-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "anyfetch-storage",
"version": "0.1.0",
"description": "Short term server for binary file storage",
"main": "./lib/",
"scripts": {
"start": "node ./bin/server.js",
"test": "NODE_ENV=test mocha -R spec --recursive",
"lint": "jshint lib/ test/ config/ bin/"
},
"repository": {
"type": "git",
"url": "git://github.com/AnyFetch/storage.anyfetch.com.git"
},
"keywords": [
"anyfetch"
],
"author": "Matthieu Bacconnier <matthieu@anyfetch.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnyFetch/storage.anyfetch.com/issues"
},
"homepage": "https://github.com/AnyFetch/storage.anyfetch.com",
"dependencies": {
"async": "^0.9.0",
"auto-load": "^1.1.0",
"dotenv": "^0.5.1",
"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",
"should": "^5.0.0",
"sinon": "^1.12.2"
}
}