-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.68 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.68 KB
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
{
"name": "api-schema-differentiator",
"version": "1.0.0",
"description": "Know when your APIs change before your users do. Automatic API schema drift detection.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"api-schema-differentiator": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"test": "jest --verbose",
"test:html": "jest --verbose --reporters=default --reporters=jest-html-reporters",
"test:coverage": "jest --coverage",
"lint": "eslint src/ --ext .ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"api",
"schema",
"drift",
"testing",
"qa",
"contract",
"validation",
"snapshot",
"monitoring",
"json-schema",
"api-testing",
"regression"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/77QAlab/api-schema-differentiator.git"
},
"bugs": {
"url": "https://github.com/77QAlab/api-schema-differentiator/issues"
},
"homepage": "https://github.com/77QAlab/api-schema-differentiator#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"jest": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"fast-xml-parser": "^4.3.4",
"glob": "^10.3.10"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}