forked from pfiaux/node-red-contrib-neeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 995 Bytes
/
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
{
"name": "node-red-contrib-neeo",
"version": "0.0.0",
"description": "Nodes to interact with the NEEO Brain",
"license": "MIT",
"node-red": {
"nodes": {
"active-now": "active-now.js",
"execute-recipe": "execute-recipe.js",
"neeo-brain": "neeo-brain.js"
}
},
"scripts": {
"eslint": "eslint ./*.js lib/ test/",
"test": "nyc mocha 'test/**/*.test.js'"
},
"dependencies": {
"got": "^8.3.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.2.0",
"mocha": "^5.2.0",
"nock": "9.4.2",
"node-red": "^0.18.7",
"node-red-node-test-helper": "^0.1.8",
"nyc": "^12.0.2",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0"
},
"nyc": {
"check-coverage": true,
"statements": 80,
"branches": 70,
"functions": 70,
"lines": 80,
"include": [
"*.js",
"lib/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
]
}
}