-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 840 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": "quick-crud",
"version": "0.2.1",
"description": "A quick mongoose crud helper",
"main": "dist/quick-crud.js",
"scripts": {
"dev": "tsc --watch",
"prepublish": "tsc --declaration",
"build": "tsc --declaration",
"test": "nodemon examples/index.js",
"doc": "typedoc --out docs src",
"postinstall": "npm-install-peers"
},
"author": {
"name": "kingRayhan",
"email": "me@rayhan.info",
"url": "https://rayhan.info"
},
"repository": {
"url": "https://github.com/kingRayhan/quick-crud"
},
"types": "./dist/quick-crud.d.ts",
"license": "ISC",
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/shortid": "0.0.29",
"mongoose": "^6.3.2",
"npm-install-peers": "^1.2.2",
"typedoc": "^0.17.6",
"typescript": "^4.6.4"
},
"peerDependencies": {
"mongoose": "6.x"
},
"dependencies": {}
}