-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "anyfetch-companion-server",
"version": "0.1.0",
"description": "The server-side of the AnyFetch companion App",
"main": "./lib/",
"scripts": {
"start": "node ./bin/server.js",
"test": "NODE_ENV=test mocha -R spec",
"lint": "jshint bin/ config/ lib/ test/ app.js && jscs bin/ config/ lib/ test/ app.js"
},
"repository": {
"type": "git",
"url": "git://github.com/AnyFetch/companion-server.git"
},
"keywords": [
"anyfetch"
],
"author": "Robin Ricard",
"license": "MIT",
"engines": {
"node": "=0.10"
},
"bugs": {
"url": "https://github.com/AnyFetch/companion-server/issues"
},
"homepage": "https://github.com/AnyFetch/companion-server",
"dependencies": {
"anyfetch": "^2.1.9",
"async": "^0.9.0",
"auto-load": "^1.1.0",
"dotenv": "^0.5.1",
"heroku-self-ping": "~1.1.1",
"mongoose": "3.8.23",
"newrelic": "^1.16.2",
"opbeat": "~1.1.2",
"rarity": "^2.1.1",
"restify": "^2.8.5",
"restify-logger": "^2.0.1",
"supertest": "^0.15.0"
},
"devDependencies": {
"jshint": "^2.6.0",
"mocha": "^2.1.0",
"mocha-mongoose": "^1.0.3",
"mongodb": "^1.4.31",
"should": "^5.0.0",
"jscs": "^1.11.3",
"sinon": "^1.12.2"
}
}