-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
{
"name": "houseband-api",
"version": "1.0.0",
"description": "API for the House Band application",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/HouseBand/api.git"
},
"keywords": [
"houseband",
"music",
"awesome"
],
"author": "David Pate <davidtpate@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HouseBand/api/issues"
},
"homepage": "https://github.com/HouseBand/api#readme",
"dependencies": {
"bluebird": "^3.0.5",
"redis": "^2.3.0",
"restify": "^4.x",
"socket.io": "^1.x",
"socket.io-redis": "^0.1.4"
},
"devDependencies": {
"buddy.js": "^0.x",
"chai": "^3.x",
"chai-as-promised": "^5.x",
"dirty-chai": "^1.x",
"eslint": "^1.x",
"istanbul": "^0.x",
"jscs": "^2.x",
"jsinspect": "^0.x",
"mocha": "^2.x",
"nsp": "^2.x",
"socket.io-client": "^1.3.7",
"supertest": "^1.x",
"supertest-as-promised": "^2.x"
},
"scripts": {
"lint": "eslint . && jscs . && jsinspect . && buddy --detect-objects server.js",
"security": "nsp check",
"cover": "istanbul cover _mocha -- --check-leaks --timeout=25000 test && istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"test": "mocha --check-leaks --timeout=25000 test",
"test-ci": "npm run lint && npm run security && npm run cover"
}
}