-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 804 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 804 Bytes
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
{
"name": "s2",
"version": "1.0.0",
"description": "(HTTP) Storage Service",
"main": "index.js",
"scripts": {
"test": "standard && mocha",
"start": "nodemon --watch . index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlessquit/s2.git"
},
"author": "Marian Schubert",
"license": "MIT",
"bugs": {
"url": "https://github.com/unlessquit/s2/issues"
},
"homepage": "https://github.com/unlessquit/s2#readme",
"devDependencies": {
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"standard": "^9.0.2",
"supertest": "^3.0.0"
},
"dependencies": {
"dotenv": "^4.0.0",
"express": "^4.15.2",
"fresh": "^0.5.0",
"mime-types": "~2.1.13",
"mkdirp": "^0.5.1",
"murmurhash3": "^0.4.0",
"tmp": "0.0.31"
}
}