-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "radiodan-client",
"version": "1.0.3",
"description": "Client library for Radiodan",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/radiodan/radiodan-client.js.git"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha test/**/test-*.js",
"coverage": "node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test/**/test*.js -- --ui bdd -R spec -t 5000",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"contributors": [
"Andrew Nicolaou <[email protected]>",
"Dan Nuttall <[email protected]>"
],
"license": "Apache-2",
"devDependencies": {
"mocha": "~1.17.1",
"sinon": "~1.7.3",
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"coveralls": "~2.7.0",
"istanbul": "~0.2.4",
"grunt": "~0.4.2",
"grunt-browserify": "~1.3.1",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-uglify": "~0.4.0"
},
"dependencies": {
"winston": "~0.7.2",
"q": "~1.0.0",
"radiodan-messaging-client": "^0.2.0",
"connect": "~2.13.0"
}
}