-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.92 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
{
"name": "decorated-ajv",
"version": "1.1.0",
"description": "AJV decorated with error handling and formats",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "npx rimraf dist",
"prettier": "npx prettier --check --ignore-unknown --no-error-on-unmatched-pattern ./**/*",
"eslint": "npx eslint ./ --no-error-on-unmatched-pattern",
"tsc": "npx tsc --project tsconfig.esm.json",
"tsc-cjs": "npx tsc --project tsconfig.cjs.json",
"build": "npm run prettier && npm run eslint && npm run clean && npm run tsc && npm run tsc-cjs",
"pretest": "npm run build",
"test": "npx jest",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sodaru/decorated-ajv.git"
},
"keywords": [
"json-validator",
"json-schema",
"ajv",
"ajv-errors",
"ajv-formats",
"sodaru",
"lib"
],
"author": "Raghavendra K R <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sodaru/decorated-ajv/issues"
},
"homepage": "https://github.com/sodaru/decorated-ajv#readme",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/json-schema": "^7.0.11",
"@types/lodash": "^4.14.178",
"ajv": "^8.9.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"eslint-config-sodaru": "^1.0.0",
"jest": "28.1.0",
"lodash": "^4.17.21",
"prettier-config-sodaru": "^1.0.0",
"rimraf": "^3.0.2",
"ts-jest": "28.0.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"prettier": "prettier-config-sodaru",
"eslintConfig": {
"extends": [
"sodaru"
]
},
"peerDependencies": {
"ajv": "^8.9.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"lodash": "^4.17.21",
"tslib": "^2.3.1"
},
"dependencies": {
"cross-fetch": "^3.1.5"
}
}