forked from NEEOInc/neeo-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.49 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
{
"name": "neeo-sdk",
"version": "0.38.0",
"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,
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.5.0",
"body-parser": "^1.16.1",
"bonjour": "^3.5.0",
"debug": "^2.6.1",
"express": "^4.14.1",
"tokensearch.js": "^0.5.31"
},
"devDependencies": {
"chai": "~3.5.0",
"chai-as-promised": "^5.3.0",
"doxdox": "^2.0.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.2",
"mocha": "^3.2.0",
"nock": "^9.0.13",
"sinon": "^2.1.0"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "npm run jshint && istanbul cover --hook-run-in-context ./node_modules/.bin/_mocha -- --reporter list --timeout 5000 --recursive \"test/**/*.js\"",
"jshint": "jshint --show-non-errors --verbose lib/**/ test/**/",
"clean": "rm -rf ./dist && mkdir -p ./dist/docs",
"coverage:report": "istanbul report text",
"doc": "npm run clean && doxdox 'lib/**/*.js' --title \"NEEO SDK\" --layout bootstrap --output ./dist/docs/index.html",
"release": "npm run test && npm run doc && npm run release:copy && npm run release:listtodos",
"release:copy": "cp -r ./{lib,test} ./dist && cp *.md .jshintrc .gitignore index.js .editorconfig .npmignore .travis.yml package.json License ./dist",
"release:listtodos": "grep -R --exclude='./node_modules/*' 'TODO' ./dist"
}
}