forked from typegoose/auto-increment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.36 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
84
85
86
87
88
89
{
"name": "@typegoose/auto-increment",
"version": "1.0.0",
"description": "Automaticly Increment properties",
"main": "lib/autoIncrement.js",
"types": "lib/autoIncrement.d.ts",
"engines": {
"node": ">=12.22.0"
},
"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": "~6.0.7"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@typegoose/typegoose": "~9.0.1",
"@types/jest": "^27.0.2",
"@types/node": "~12.12.6",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"commitlint": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.1",
"lint-staged": "^11.1.1",
"mongodb-memory-server": "^7.4.1",
"mongoose": "~6.0.7",
"prettier": "^2.4.1",
"rimraf": "3.0.2",
"semantic-release": "^17.4.7",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {
"loglevel": "^1.7.0",
"tslib": "^2.0.3"
},
"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"
}