-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "mongoose-sequence",
"version": "6.0.1",
"description": "Very generic autoincrement plugin for mongoose",
"main": "index.js",
"scripts": {
"format": "prettier --write \".\"",
"lint": "eslint . --fix",
"test-only": "jest",
"test-watch": "jest --watch",
"test": "npm run lint && npm run test-only -- --coverage",
"test-ci": "npm run lint -- --quiet && npm run test-only -- --coverage --coverageReporters=text-lcov | coveralls"
},
"keywords": [
"mongoose",
"autoincrement",
"sequence",
"seq"
],
"repository": {
"type": "git",
"url": "https://github.com/ramiel/mongoose-sequence.git"
},
"author": {
"name": "Fabrizio Ruggeri",
"email": "[email protected]",
"url": "https://www.ramielcreations.com/"
},
"license": "GPL-2.0",
"dependencies": {
"async": "^3.2.5",
"lodash": "^4.17.21"
},
"peerDependencies": {
"mongoose": ">=5"
},
"devDependencies": {
"chai": "^4.3.10",
"coveralls": "^3.1.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"mongoose": "8.0.3",
"prettier": "^3.1.1",
"sinon": "17.0.1"
},
"jest": {
"testEnvironment": "node"
}
}