-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.84 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": "flexible-json-schema",
"version": "0.13.5",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./parse": {
"types": "./parse.d.ts",
"default": "./parse.js"
},
"./core": {
"types": "./core.d.ts",
"default": "./core.js"
},
"./type": {
"types": "./type.d.ts",
"default": "./type.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "node --experimental-json-modules node_modules/mocha/bin/_mocha --require ./test/setup.js --reporter spec --colors --bail --exit --recursive \"./{,!(node_modules)/**/}*.test.js\"",
"test-coverage": "node --experimental-json-modules node_modules/istanbul/lib/cli.js cover -x \"commonjs/**\" -x \"modules/**\" -x \"*.test.js\" node --experimental-json-modules node_modules/mocha/bin/_mocha -- --colors --reporter dot --require ./test/setup.js \"./{,!(node_modules)/**/}*.test.js\" --recursive",
"test-travis": "istanbul cover -x \"commonjs/**\" -x \"modules/**\" -x \"*.test.js\" node --experimental-json-modules node_modules/mocha/bin/_mocha --report lcovonly -- --colors --reporter spec --require ./test/setup.js \"./{,!(node_modules)/**/}*.test.js\" --recursive",
"prepublishOnly": "npm test"
},
"dependencies": {
"yup": "^1.4.0"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/catamphetamine/flexible-json-schema"
},
"keywords": [
"json",
"schema",
"validation",
"flexible"
],
"author": "catamphetamine <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/catamphetamine/flexible-json-schema/issues"
},
"homepage": "https://gitlab.com/catamphetamine/flexible-json-schema#readme"
}