-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 2.07 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
{
"name": "allof-merge",
"version": "0.6.6",
"description": "Simplify JsonSchema/Openapi by combining allOf safely",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"browser": "dist/allof-merge.min.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup -c",
"test": "jest --verbose",
"test:coverage": "jest --verbose --coverage",
"benchmark": "yarn build && node benchmark"
},
"keywords": [
"json",
"schema",
"json-schema",
"jsonschema",
"openapi",
"swagger",
"allof",
"merge",
"resolve",
"simplify"
],
"repository": {
"type": "git",
"url": "https://github.com/udamir/allof-merge"
},
"author": "Damir Yusipov",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"benchmark": "^2.1.4",
"gqlapi": "^0.5.1",
"graphql": "^16.8.1",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"json-schema-merge-allof": "^0.8.1",
"rimraf": "^5.0.5",
"rollup": "^4.22.5",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-progress": "^1.1.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.7.0",
"tslint": "^6.1.2",
"typescript": "^5.1.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(ts?|tsx?|js?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"collectCoverage": true
},
"dependencies": {
"json-crawl": "^0.5.3"
}
}