-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 978 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
{
"name": "apollo-arduino",
"version": "0.0.0",
"description": "Arduino docker demo",
"author": "rafal baba",
"license": "ISC",
"dependencies": {
"bluebird": "^3.1.1",
"dockerode": "^2.2.8",
"fs": "0.0.2",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.12.0",
"grunt-contrib-watch": "^0.6.1",
"jest-cli": "^0.8.2",
"johnny-five": "^0.9.18",
"lcd-scrolling": "^1.0.2",
"prettysize": "0.0.3"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.5.0",
"grunt-babel": "^6.0.0",
"jest-cli": "^0.8.2",
"load-grunt-tasks": "^3.4.0"
},
"jest": {
"rootDir": "./",
"collectCoverage": true
},
"scripts": {
"predebug": "grunt",
"debug": "open http://localhost:8080/debug?port=5858",
"postdebug": "node-inspector & node-debug app.js",
"build": "babel src -d lib",
"test": "jest",
"prestart": "grunt",
"start": "node app"
}
}