-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.93 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
{
"name": "@numengames/numinia-models",
"version": "6.0.2",
"description": "Models for numinia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest --maxWorkers=50%",
"test:ci": "jest --maxWorkers=50%",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"publish-patch": "npm run build && NODE_ENV=test np patch --no-2fa",
"publish-minor": "npm run build && NODE_ENV=test np minor --no-2fa",
"publish-major": "npm run build && NODE_ENV=test np major --no-2fa",
"format": "prettier --write ."
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"pre-commit": [
"format",
"lint"
],
"pre-push": [
"test"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/numengames/numinia/numinia-models.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"mongoose",
"models"
],
"author": "Numen Games",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/numengames/numinia/numinia-models/issues"
},
"homepage": "https://gitlab.com/numengames/numinia/numinia-models#readme",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@shelf/jest-mongodb": "^4.3.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.1",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"np": "^10.0.5",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"lodash": "^4.17.21",
"mongoose": "^8.0.3"
}
}