-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.49 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": "multer-storage-gridfs",
"version": "1.5.0",
"description": "Multer Storage Engine to save uploads directly to MongoDB GridFS",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"compile": "babel ./src -d ./dist",
"build": "yarn run clean && yarn run compile",
"yarn-publish": "yarn run build && yarn publish",
"test": "mocha ./test --compilers js:babel-register --require babel-polyfill",
"coverage": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"repository": "git+https://github.com/BlackBoxVision/multer-storage-gridfs.git",
"keywords": [
"multer",
"storage",
"mongo",
"gridfs"
],
"author": "BlackBox Vision",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlackBoxVision/multer-storage-gridfs/issues"
},
"homepage": "https://github.com/BlackBoxVision/multer-storage-gridfs#readme",
"dependencies": {
"await-to-js": "^1.0.1",
"gridfs-stream": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-babili": "^0.0.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"coveralls": "^2.11.16",
"form-data": "^2.1.2",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mongoose": "^4.8.1",
"multer": "^1.3.0",
"on-finished": "^2.3.0",
"rimraf": "^2.6.0",
"sinon": "^1.17.7"
}
}