This repository has been archived by the owner on Jul 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.35 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "mongoose-auto-increment-reworked",
"version": "1.2.1",
"description": "An auto-incrementing field generator for Mongoose 4 & 5",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"typecheck": "tsc --noEmit",
"clean": "rimraf ./index.js ./test.js ./*.js.map ./*.d.ts coverage",
"tslint": "tslint -p ./tsconfig.json -s node_modules/custom-tslint-formatters/formatters -t grouped src/index.ts src/test.ts",
"tslint:fix": "npm run tslint -- --fix",
"test:debug": "cross-env DEBUG=mongoose-auto-increment-reworked npm test",
"test": "env-cmd ./.env nyc mocha --opts ./mocha.opts",
"doctoc": "doctoc --github README.md CHANGELOG.md",
"preversion": "npm run tslint && npm test",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=8.0"
},
"dependencies": {
"@types/mongoose": "^4.0.0 || ^5.0.0",
"debug": "^4.0.0",
"tslib": "^1.0.0",
"typescript-lazy-get-decorator": "^1.0.0"
},
"peerDependencies": {
"mongoose": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@alorel-personal/tslint-rules": "^3.0.0",
"@types/chai": "^4.1.1",
"@types/debug": "^0.0.31",
"@types/lodash": "^4.14.93",
"@types/mocha": "^5.0.0",
"@types/node": "^10.0.3",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"custom-tslint-formatters": "^2.1.1",
"doctoc": "^1.3.0",
"env-cmd": "^8.0.1",
"lodash": "^4.17.4",
"mocha": "^5.0.0",
"mongoose": "^4.0.0 || ^5.0.0",
"nyc": "^13.0.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.2",
"ts-node": "^7.0.0",
"tslint": "^5.9.0",
"typescript": "^3.0.0",
"uuid": "^3.2.1"
},
"keywords": [
"mongoose",
"auto-increment",
"id",
"generate",
"numeric",
"mongo",
"mongodb",
"db",
"auto",
"increment",
"incremented"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Alorel/mongoose-auto-increment-reworked.git"
},
"homepage": "https://github.com/Alorel/mongoose-auto-increment-reworked",
"bugs": {
"url": "https://github.com/Alorel/mongoose-auto-increment-reworked/issues"
},
"author": {
"name": "Arturas Molcanovas",
"email": "[email protected]",
"url": "https://github.com/Alorel"
},
"license": "MIT"
}