-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
51
52
53
54
55
56
57
{
"name": "@gradecam/gridfs",
"version": "1.1.0",
"description": "Make working with GridFS and mongoose easier.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p .",
"build:clean": "npm run clean && npm run build",
"clean": "rimraf tsconfig.tsbuildinfo lib",
"lint": "eslint src/*.ts",
"prepublishOnly": "npm run test && npm run lint && npm run build:clean",
"test": "jest"
},
"keywords": [
"gridfs",
"mongoose"
],
"author": "Jarom Loveridge <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/mongodb": "^3.3.1",
"@types/mongoose": "^5.5.17",
"@types/node": "^10.14.18"
},
"peerDependencies": {
"mongoose": ">=5.7.1",
"tslib": ">=1.10.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.1",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"jest": "^24.9.0",
"mongoose": "^5.7.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gradecam/node-gridfs.git"
},
"bugs": {
"url": "https://github.com/gradecam/node-gridfs/issues"
},
"homepage": "https://github.com/gradecam/node-gridfs#readme"
}