-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.82 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
{
"name": "zod-joda",
"version": "1.1.3",
"description": "JS-Joda integration for Zod validation library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com:dasprid/zod-joda.git"
},
"files": [
"lib/**/*"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*.ts",
"coverage": "nyc npm test",
"test-ci": "nyc --reporter=lcov npm test",
"build": "rimraf ./build && tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"postinstall": "is-ci || husky install",
"prepublishOnly": "npm test && npm run lint && pinst --disable",
"postpublish": "pinst --enable",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run lint:fix && git add -A src",
"postversion": "git push && git push --tags"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"author": "Ben Scholzen 'DASPRiD'",
"keywords": [
"Zod",
"js-joda",
"validation",
"joda",
"TypeScript"
],
"license": "BSD-2-Clause",
"dependencies": {
"tslib": "^2.1.0"
},
"peerDependencies": {
"@js-joda/core": "^3.2.0 || ^4.0.0 || ^5.0.0",
"zod": "^3.9.7"
},
"devDependencies": {
"@js-joda/core": "^5.0.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"chai": "^4.3.0",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"lint-staged": "^12.3.2",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"pinst": "^2.1.6",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.1.3",
"zod": "^3.8.7"
}
}