-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "radiodan",
"preferGlobal": true,
"version": "1.0.0",
"license": "Apache-2",
"contributors": [
"Dan Nuttall <[email protected]>",
"Andrew Nicolaou <[email protected]>"
],
"description": "Programmable radios operating at web scale",
"repository": {
"type": "git",
"url": "https://github.com/radiodan/radiodan.js.git"
},
"bin": {
"radiodan-server": "./bin/server",
"radiodan-cli": "./bin/cli"
},
"scripts": {
"test": "LOG_LEVEL=fatal node_modules/mocha/bin/mocha --recursive --require test/helper",
"coverage": "LOG_LEVEL=fatal node_modules/istanbul/lib/cli.js cover _mocha -- --require test/helper --recursive --ui bdd -R spec -t 5000",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"dependencies": {
"mpd": "~1.0.2",
"commander": "~2.0.0",
"q": "~1.0.0",
"winston": "~0.7.2",
"mustache": "~0.7.2",
"tmp": "0.0.21",
"lodash": "~2.4.1",
"optimist": "~0.6.0",
"q-io": "~1.10.8",
"radiodan-client": "~1.0.0",
"deep-equal": "~0.2.1",
"mkdirp": "~0.3.5",
"portfinder": "~0.2.1",
"sprintf": "~0.1.3"
},
"devDependencies": {
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"coveralls": "~2.7.0",
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-mocha-test": "~0.12.0",
"istanbul": "~0.2.4",
"mocha": "~1.20.0",
"sinon": "~1.8.1"
},
"engines": {
"node": ">=0.10.20"
}
}