-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "com.somfy.tahoma",
"version": "1.5.4",
"description": "Somfy TaHoma app for Homey",
"main": "app.js",
"scripts": {
"create-docs": "npm i && jsdoc -c conf.json && open ./docs/index.html && npm run prepare-production",
"lint": "eslint lib drivers",
"test": "npm i && npm run lint && npm run unit-test && npm run prepare-production",
"unit-test": "NODE_ENV=test nyc mocha --recursive --require co-mocha '**/*.spec.js'",
"precommit": "npm run lint",
"prepush": "npm test",
"prepare-production": "rm -rf node_modules && npm i --production"
},
"repository": {
"type": "git",
"url": "git+https://totalimmersion@github.com/totalimmersion/com.somfy.tahoma.git"
},
"author": "Lennart Kuijs",
"license": "ISC",
"bugs": {
"url": "https://github.com/totalimmersion/com.somfy.tahoma/issues"
},
"homepage": "https://github.com/totalimmersion/com.somfy.tahoma#readme",
"dependencies": {
"homey-log": "^1.0.6",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"co-mocha": "^1.2.2",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"nyc": "^13.1.0",
"sinon": "^6.1.3",
"sinon-chai": "^3.2.0"
}
}