-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
82 lines (82 loc) · 2.06 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
{
"name": "@typegoose/auto-increment",
"version": "4.9.0",
"description": "Automaticly Increment properties",
"main": "lib/autoIncrement.js",
"types": "lib/autoIncrement.d.ts",
"engines": {
"node": ">=16.20.1"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:tests": "tsc -p tsconfig.json",
"lint": "eslint -c ./.eslintrc.js './**/*.{js,ts}'",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --collectCoverage",
"test:watchCoverage": "jest --collectCoverage --watch",
"clean": "rimraf lib .tsbuildinfo coverage doc build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typegoose/auto-increment.git"
},
"author": "hasezoey <[email protected]>",
"contributors": [],
"license": "MIT",
"peerDependencies": {
"mongoose": "~8.9.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@typegoose/typegoose": "~12.10.1",
"@types/jest": "^29.5.14",
"@types/node": "~16.11.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"commitlint": "^17.8.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"mongodb-memory-server": "^10.1.2",
"mongoose": "~8.9.0",
"prettier": "^3.4.2",
"rimraf": "5.0.7",
"ts-jest": "^29.2.5",
"typescript": "~5.3.3"
},
"dependencies": {
"loglevel": "^1.9.2",
"tslib": "^2.8.1"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typegoose",
"mongoose",
"auto-increment",
"id",
"generate",
"numeric",
"mongo",
"mongodb",
"db",
"auto",
"increment",
"incremented"
],
"bugs": {
"url": "https://github.com/typegoose/auto-increment/issues"
},
"homepage": "https://github.com/typegoose/auto-increment"
}