-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.58 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": "MakerNode",
"preferGlobal": false,
"version": "0.0.1",
"author": "adampasz <[email protected]>",
"description": "Write NodeJS for the Intel Galileo",
"contributors": [
{
"name": "Noura Howell",
"email": "[email protected]",
"url": "http://nourahowell.com"
}
],
"main": "./index",
"repository": {
"type": "git",
"url": "https://github.com/IntelOpenDesign/MakerNode"
},
"keywords": [
"intel",
"galileo",
"arduino"
],
"dependencies": {
"galileo-io": "git+https://github.com/rwaldron/galileo-io.git",
"q": "1.0.1",
"q-io": "1.11.1",
"underscore": "1.6.0",
"docopt-js-shim": "git+https://github.com/adampasz/docopt-js-shim.git"
},
"licenses": {
"type": "MIT"
},
"engines": {
"node": ">=0.8.18"
},
"devDependencies": {
"chai": "~1.9.1",
"istanbul": "~0.3.0",
"mocha": "~1.20.1",
"mocha-better-spec-reporter": "0.0.2",
"mocha-unfunk-reporter": "~0.4.0",
"socket.io": "^1.0.6",
"socket.io-client": "~1.0.6",
"jsdoc": "~3.3.0-alpha9",
"less": "~1.7.5",
"cli-color": "~0.3.2",
"express": "~4.9.6"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --timeout 5000 --reporter mocha-unfunk-reporter",
"coverage": "./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --timeout 5000 -R mocha-unfunk-reporter && mv coverage/lcov-report/ client/coverage/",
"doc": "./node_modules/jsdoc/jsdoc.js -d client/docs/server -r lib",
"css": "./node_modules/less/bin/lessc client/app.less > client/static/css/app.css"
}
}