-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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": "rackian-storage",
"version": "0.0.1",
"description": "File sync and share cloud API",
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"watch": "nodemon",
"test": "standard && jest",
"watchtest": "jest --watch",
"coverage": "standard && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivandelabeldad/rackian-storage.git"
},
"keywords": [
"api",
"storage",
"rackian"
],
"author": "Ivan de la Beldad <ivandelabeldad@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivandelabeldad/rackian-storage/issues"
},
"homepage": "https://github.com/ivandelabeldad/rackian-storage#readme",
"devDependencies": {
"jest": "^23.0.1",
"nock": "^9.2.6",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.17.5",
"standard": "^11.0.1"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-validator": "^5.2.0",
"fs-extra": "^6.0.1",
"mongodb": "^3.0.8",
"winston": "^2.4.2"
},
"standard": {
"env": [
"jest"
]
}
}