-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 972 Bytes
/
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
{
"name": "gridfile",
"version": "1.1.5",
"description": "GridFile is a reusable Mongoose schema for MongoDB GridFS",
"keywords": [
"mongoose",
"mongoose-schema",
"mongoose-model",
"mongodb",
"gridfs"
],
"main": "src/gridFile.schema.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha --timeout 10000 test.js",
"doc": "documentation build src/gridFile.schema.js -f md > API.md",
"lint": "standard --fix"
},
"author": "[email protected]",
"homepage": "https://github.com/abskmj/gridfile",
"bugs": "https://github.com/abskmj/gridfile/issues",
"repository": "github:abskmj/gridfile",
"license": "MIT",
"peerDependencies": {
"mongoose": "*"
},
"devDependencies": {
"chai": "^4.5.0",
"documentation": "^14.0.3",
"memorystream": "^0.3.1",
"mocha": "^10.3.0",
"mongodb-memory-server": "^9.1.6",
"mongoose": "^8.7.2",
"nyc": "^17.1.0",
"standard": "^17.1.0"
}
}