-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
99 lines (99 loc) · 2.57 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "neeo-sdk",
"version": "0.53.8",
"description": "NEEO Brain SDK. For examples see https://github.com/NEEOInc/neeo-sdk-examples.",
"repository": "https://github.com/NEEOInc/neeo-sdk",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"bonjour": "^3.5.0",
"commander": "^2.19.0",
"debug": "^4.1.0",
"express": "^4.16.4",
"fast-url-parser": "^1.1.3",
"openpgp": "^2.6.2",
"rxjs": "^6.3.3",
"semver": "^5.6.0",
"tokensearch.js": "^0.8.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/bonjour": "^3.5.5",
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "^0.0.30",
"@types/express": "^4.16.0",
"@types/express-serve-static-core": "^4.16.0",
"@types/lodash.merge": "^4.6.4",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/node": "^10.9.2",
"@types/semver": "^5.5.0",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"doxdox": "^2.0.3",
"mocha": "^5.1.1",
"nock": "^10.0.2",
"nyc": "^13.1.0",
"sinon": "^6.3.4",
"sinon-chai": "^3.2.0",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^2.9.2"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "TS_NODE_PROJECT=./test/tsconfig.json nyc mocha ./test/**/*.ts --opts ./test/mocha.opts",
"tslint": "tslint src/**/*.ts test/**/*.ts",
"build": "tsc",
"build:clean": "rm -rf ./dist",
"doc:clean": "rm -rf ./docs",
"clean": "npm run build:clean && npm run doc:clean",
"coverage:report": "nyc report text",
"doc": "mkdir -p ./docs/ && doxdox ./src/lib/index.ts ./src/lib/**/**/*.ts ./src/lib/**/*.ts --title \"NEEO SDK\" --layout bootstrap --output ./docs/index.html",
"prepack": "npm i && npm run build",
"watch": "tsc -w"
},
"nyc": {
"all": true,
"check-coverage": true,
"lines": 84,
"statements": 84,
"functions": 80,
"sourceMap": true,
"instrument": true,
"branches": 80,
"include": [
"src/cli/**/*.ts",
"src/lib/**/*.ts"
],
"extension": [
".ts",
".js"
],
"reporter": [
"text-summary",
"lcov"
]
},
"greenkeeper": {
"ignore": [
"nock",
"openpgp"
]
},
"bin": {
"neeo-sdk": "dist/cli/index.js"
}
}