-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.04 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": "ocfiles-server",
"version": "1.0.0",
"description": "OCFiles server using Express and MongoDB GRIDFS",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "nyc --reporter=html --reporter=text mocha --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Lazhari",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"express": "^4.14.1",
"gridfs-stream": "^1.1.1",
"lodash": "^4.17.4",
"mime-types": "^2.1.14",
"mongoose": "^4.8.0",
"multer": "^1.3.0",
"request": "2.79.0",
"uuid": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/OCFiles/ocfiles-server"
},
"bugs": {
"url": "https://github.com/OCFiles/ocfiles-server/issues"
},
"homepage": "https://github.com/OCFiles/ocfiles-server",
"devDependencies": {
"chai": "3.5.0",
"chai-http": "3.0.0",
"coveralls": "2.11.16",
"mocha": "3.2.0",
"nodemon": "1.11.0",
"nyc": "10.1.2"
}
}