forked from radarlabs/api-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.24 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
{
"name": "@radarlabs/api-diff",
"version": "1.0.38",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --fix --ext .ts",
"api-diff": "./node_modules/.bin/ts-node src/api-diff/api-diff.ts",
"api-tool": "./node_modules/.bin/ts-node src/api-tool.ts",
"generate-baseline": "./node_modules/.bin/ts-node src/api-diff/generate-baseline.ts",
"build": "tsc && cp src/api-diff/formatters/*template dist/api-diff/formatters/ ",
"prepare": "yarn build"
},
"bin": {
"api-diff": "./dist/api-diff/api-diff.js",
"api-tool": "./dist/api-tool.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radarlabs/api-diff.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/radarlabs/api-diff/issues"
},
"homepage": "https://github.com/radarlabs/api-diff#readme",
"dependencies": {
"@types/bluebird": "^3.5.32",
"@types/cli-progress": "^3.8.0",
"axios": "^0.19.2",
"axios-retry": "^3.1.8",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"cli-progress": "^3.8.2",
"csv-parse": "^4.11.1",
"csv-stringify": "^5.5.0",
"dotenv": "^8.2.0",
"hjson": "^3.2.1",
"jsondiffpatch": "^0.4.1",
"jsonpath": "^1.0.2",
"lodash": "^4.17.19",
"md5": "^2.2.1",
"stats-lite": "^2.2.0",
"table": "^5.4.6",
"winston": "^3.3.3",
"wtfnode": "^0.8.3",
"yargs": "^15.1.0"
},
"devDependencies": {
"lint-staged": "^10.2.11",
"husky": "^4.2.5",
"eslint-config-airbnb": "^18.2.0",
"@types/chalk": "^2.2.0",
"@types/lodash": "^4.14.157",
"@types/md5": "^2.2.0",
"@types/node": "^14.0.13",
"@types/npm": "^2.0.31",
"@types/stats-lite": "^2.2.0",
"@types/table": "^5.0.0",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsdoc": "^28.5.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "./node_modules/.bin/eslint --fix"
}
}