forked from udamir/api-smart-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.65 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
{
"name": "api-smart-diff",
"version": "0.6.11",
"description": "Generate the diff between two API specifications (OpenAPI, AsyncAPI, JsonSchema)",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist",
"browser"
],
"browser": {
"./dist/cjs/index.js": "./browser/api-smart-diff.js"
},
"scripts": {
"build": "tsc && tsc --module commonjs --outDir dist/cjs",
"test": "jest --verbose",
"prepublish": "rm -r dist || true && npm run build && npm run build:web",
"test:coverage": "jest --verbose --coverage",
"build:web": "webpack"
},
"keywords": [
"jsonschema",
"diff",
"merge",
"compare",
"openapi",
"swagger",
"asyncapi",
"graphql",
"graphapi",
"api"
],
"author": "Damir Yusipov",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/js-yaml": "^4.0.5",
"allof-merge": "^0.2.0",
"fast-json-patch": "^3.1.1",
"gqlapi": "0.0.4",
"graphql": "^16.6.0",
"jest": "^26.0.1",
"js-yaml": "^4.1.0",
"ts-jest": "^26.1.0",
"ts-loader": "^8.4.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.2",
"typescript": "^4.6.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"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
}
}