-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.21 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
{
"name": "is-json-schema-subset",
"version": "1.1.27",
"description": "Check if a JSON schema is a subset of another",
"keywords": [
"JSON",
"schema",
"jsonschema",
"json-schema",
"JSON schema",
"validation"
],
"homepage": "https://github.com/haggholm/is-json-schema-subset",
"repository": {
"type": "git",
"url": "git@github.com:haggholm/is-json-schema-subset.git"
},
"license": "MIT",
"author": "Petter Häggholm <petter@petterhaggholm.net>",
"files": [
"dist"
],
"sideEffects": false,
"main": "dist/is-json-schema-subset.js",
"types": "dist/is-json-schema-subset.d.ts",
"scripts": {
"clean": "rimraf dist tsconfig.tsbuildinfo",
"compile": "tsc",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint --project .",
"lint-fix": "run-p -l tslint-fix sort-package-json",
"prepare": "run-s -n clean compile",
"sort-package-json": "sort-package-json",
"pretest": "tsc",
"test": "jest",
"tslint-fix": "tslint --fix --project .",
"preversion": "run-p -l lint test"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.7",
"@haggholm/json-schema-merge-allof": "^1.0.2",
"@types/debug": "^4.1.5",
"@types/node": "^12.6.8",
"ajv": "^6.12.6",
"debug": "^4.3.1",
"fast-deep-equal": "^3.1.3",
"json-schema": "^0.4.0",
"rfc6902": "^4.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/rimraf": "^3.0.0",
"coveralls": "^3.1.0",
"deep-freeze": "^0.0.1",
"jest": "^26.6.3",
"json-schema-faker": "^0.5.0-rcv.33",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.49.0",
"terser": "^5.6.0",
"ts-jest": "^26.5.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.2.3"
},
"engines": {
"node": ">=10.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"optionalDependencies": {
"@types/supports-color": "^7.2.0",
"supports-color": "^8.1.1"
},
"packageManager": "yarn@3.2.0"
}