-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
101 lines (101 loc) · 4.74 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "json-schema-library",
"version": "10.0.0-rc7",
"description": "Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation",
"module": "dist/module/index.js",
"types": "dist/index.d.ts",
"main": "dist/jsonSchemaLibrary.js",
"scripts": {
"dist": "rm -rf dist; yarn dist:es5 && yarn dist:es6",
"dist:es5": "NODE_ENV=production webpack",
"dist:es6": "tsc --outDir dist/module --target ES2019",
"test": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/**/*.test.ts'",
"test:integration": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/integration/**/*.test.ts'",
"test:unit": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/unit/**/*.test.ts'",
"test:unit:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/unit/**/*.test.ts' > test-result-unit.json; exit 0",
"test:spec": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/**/*.test.ts'",
"test:spec:4:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v4/*.test.ts' > test-result-spec4.json; exit 0",
"test:spec:6:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v6/*.test.ts' > test-result-spec6.json; exit 0",
"test:spec:7:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v7/*.test.ts' > test-result-spec7.json; exit 0",
"test:spec:2019:ci": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R json 'test/spec/v2019-09/*.test.ts' > test-result-spec2019-09.json; exit 0",
"test:4": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v4/*.test.ts'",
"test:6": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v6/*.test.ts'",
"test:7": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v7/*.test.ts'",
"test:2019": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v2019-09/*.test.ts'",
"test:2020": "TS_NODE_PROJECT=./test/tsconfig.json mocha -r ts-node/register -R spec 'test/spec/v2020-12/*.test.ts'",
"tdd": "watch \"npm run test:unit\" lib/ test/",
"coverage": "nyc npm run test --reporter=lcov",
"analyze": "NODE_ENV=production webpack --json | webpack-bundle-size-analyzer",
"lint": "eslint lib",
"prepublishOnly": "yarn dist"
},
"repository": {
"type": "git",
"url": "https://github.com/sagold/json-schema-library.git"
},
"keywords": [
"JSON",
"schema",
"customize",
"library",
"tools",
"utilities",
"validator",
"validation",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation",
"make my day"
],
"author": "Sascha Goldhofer <[email protected]> (https://github.com/sagold/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sagold/json-schema-library/issues"
},
"homepage": "https://github.com/sagold/json-schema-library",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.17.9",
"@types/valid-url": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^4.4.1",
"eslint": "^8.57.1",
"eslint-plugin-array-func": "^4.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.0",
"eslint-plugin-promise": "^6.6.0",
"glob": "^10.4.5",
"json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite#57617f254a6734d5c64fa86fd3b08e8799970b25",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"watch": "^1.0.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@sagold/json-pointer": "^6.0.1",
"@sagold/json-query": "^6.2.0",
"deepmerge": "^4.3.1",
"fast-copy": "^3.0.2",
"fast-deep-equal": "^3.1.3",
"valid-url": "^1.0.9",
"smtp-address-parser": "1.0.10"
},
"resolutions": {
"json5": ">=2.2.3",
"lodash": ">=4",
"merge": ">=2",
"string-width": "4.2.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}