-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "node-red-contrib-komfovent",
"version": "0.3.3",
"description": "Node red node for interacting with komfovent system c6 controller",
"author": "Kristian Svantorp",
"license": "MIT",
"dependencies": {
"cheerio": ">=1.0.0-rc.3",
"node-red": "^3.0.0",
"request": ">=2.88.0",
"stryker-mocha-runner": "^0.17.1"
},
"keywords": [
"komfovent",
"node",
"node-red",
"ventilation"
],
"node-red": {
"nodes": {
"KomfoventNode": "komfnodes/config.js",
"KomfoventConfig": "komfnodes/setter.js",
"KomfoVentNodeGet": "komfnodes/getter.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ksvan/node-red-contrib-komfovent.git"
},
"devDependencies": {
"@stryker-mutator/core": "^2.1.0",
"@stryker-mutator/html-reporter": "^2.1.0",
"@stryker-mutator/javascript-mutator": "^2.1.0",
"@stryker-mutator/mocha-framework": "^2.1.0",
"@stryker-mutator/mocha-runner": "^2.1.0",
"ajv": "^6.10.2",
"axios": "^0.19.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-mocha": "^6.2.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.1",
"nock": "^11.4.0",
"node-red-node-test-helper": "^0.2.3",
"nyc": "^14.1.1",
"should": "^13.2.3"
},
"scripts": {
"pretest": "eslint komfnodes/*.js",
"test": "mocha \"test/**/*_spec.js\""
}
}