-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.59 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
{
"name": "good-cop",
"version": "1.2.23",
"type": "commonjs",
"main": "./dist/index-frontend.js",
"exports": {
".": "./dist/index-frontend.js",
"./backend": "./dist/index-backend.js",
"./frontend": "./dist/index-frontend.js"
},
"typesVersions": {
"*": {
"backend": [
"./src/index-backend.ts"
],
"frontend": [
"./src/index-frontend.ts"
]
}
},
"description": "EXTENDABLE VALIDATION LIBRARY (zod like syntax, can generate mongo models and infer types)",
"license": "ISC",
"author": "topkat",
"repository": {
"type": "git",
"url": "git+https://github.com/top-kat/good-cop.git"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "tsc",
"test": "jest --watchAll",
"test:ci": "jest --ci --runInBand --maxConcurrency=1 --silent",
"bump:major": "yarn test:ci && npm run build && node node_modules/bump-simple/bump-simple.js --major",
"bump:minor": "yarn test:ci && npm run build && node node_modules/bump-simple/bump-simple.js --minor",
"bump:patch": "yarn test:ci && npm run build && node node_modules/bump-simple/bump-simple.js --patch"
},
"dependencies": {
"@types/mongoose": "^5.11.97",
"topkat-utils": "^1.2.105"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"bump-simple": "^1.0.24",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-turbo": "latest",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}