-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "hardware-handler",
"version": "1.0.0",
"description": "Connecting a board to the HAIoT system.",
"main": "index.js",
"engines": {
"npm": "5.5.1",
"node": "8.7.0"
},
"dependencies": {
"johnny-five": "^0.11.6",
"socket.io-client": "^2.0.3",
"supervisor": "0.12.0"
},
"devDependencies": {
"dotenv": "^4.0.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"mock-firmata": "^0.2.0",
"nyc": "^11.2.1",
"should": "^13.1.2",
"socket.io": "^2.0.3"
},
"scripts": {
"start": "./node_modules/.bin/supervisor -w index.js,.env index.js",
"start-mocked": "node . --mock-board",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha --require should --report lcovonly ./test/",
"generate-coverage": "./node_modules/.bin/nyc report --reporter=lcov"
},
"keywords": [
"ioe",
"iot",
"nodejs",
"firmata",
"hardware",
"javascript"
],
"author": "Jourdan Rodrigues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ha-iot/hardware-handler.git"
},
"bugs": {
"url": "https://github.com/ha-iot/hardware-handler/issues"
}
}