This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nexmo-cli",
"version": "0.3.16",
"description": "Nexmo Command Line Interface",
"main": "lib/request.js",
"scripts": {
"prebuild": "eslint src",
"build": "babel -d lib src/ -s inline",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pretest": "eslint tests",
"coverage": "cross-env NODE_ENV=test nyc --reporter=text-lcov mocha --require @babel/register tests/* > coverage.lcov",
"coverage:html": "cross-env NODE_ENV=test nyc --reporter=html mocha --require @babel/register tests/*",
"test": "mocha --require @babel/register tests/*",
"watch:test": "watch 'npm test' tests src",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/nexmo/nexmo-cli.git"
},
"keywords": [
"nexmo",
"sms",
"voice",
"cli"
],
"bin": {
"nexmo": "lib/bin.js"
},
"author": "nexmo",
"license": "MIT",
"bugs": {
"url": "https://github.com/nexmo/nexmo-cli/issues"
},
"contributors": [
"cbetta",
"leggetter"
],
"homepage": "https://github.com/nexmo/nexmo-cli",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"sinon-test": "^2.4.0",
"watch": "^1.0.2"
},
"dependencies": {
"colors": "^1.3.2",
"commander": "^2.19.0",
"ini": "^1.3.4",
"leven": "^3.1.0",
"nexmo": "^2.9.0"
},
"engines": {
"node": ">=6.0.0"
}
}