-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "homey-zwavedriver",
"version": "2.2.0",
"description": "This module can be used to make the development of Z-Wave apps for Homey easier.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",
"lint": "eslint .",
"serve": "concurrently \"serve build/\" \"npm run build:watch\"",
"build": "jsdoc --configure ./docs/jsdoc.json",
"build:clean": "rm -rf ./build",
"build:watch": "watch \"npm run build:clean && npm run build\" lib docs \"node_modules/@athombv/jsdoc-template\""
},
"keywords": [
"zwave",
"homey"
],
"author": "Athom B.V.",
"license": "ISC",
"dependencies": {
"color-space": "^1.16.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-athom": "^2.0.6",
"homey": "^2.1.5",
"@athombv/jsdoc-template": "^1.6.0",
"jsdoc": "^3.6.6",
"jsdoc-ts-utils": "^1.1.2",
"mocha": "^10.2.0",
"npm-watch": "^0.13.0",
"serve": "^11.3.1",
"watch": "^1.0.2"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/athombv/node-homey-zwavedriver.git"
},
"bugs": {
"url": "https://github.com/athombv/node-homey-zwavedriver/issues"
},
"homepage": "https://github.com/athombv/node-homey-zwavedriver#readme",
"watch": {
"jsdoc": {
"patterns": [
"lib"
],
"extensions": [
"js"
]
}
}
}