-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
74 lines (74 loc) · 1.78 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
{
"name": "apigeelint",
"version": "2.61.0",
"description": "Node module and tool to lint a bundle for an Apigee API Proxy or sharedflow.",
"main": "index.js",
"bin": {
"apigeelint": "./cli.js"
},
"scripts": {
"badge": "mocha --reporter mocha-badge-generator",
"coverage": "npx nyc --reporter=text mocha",
"build-condition-parser": "npx mkdirp build && npx peggy -o build/ConditionParser.js lib/peggy/Apigee-Condition.pegjs",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/apigee/apigeelint"
},
"keywords": [
"API",
"bundle",
"lint",
"linter",
"Apigee",
"Edge"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/apigee/apigeelint/issues"
},
"private": false,
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"adm-zip": "^0.5.16",
"babel-code-frame": "latest",
"chalk": "4.1.2",
"commander": "^2.9.0",
"debug": "^4.3.6",
"decompress": "latest",
"eslint": "latest",
"fast-xml-parser": "^4.3.1",
"js-yaml": "latest",
"jshint": "^2.10.1",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"pdfmake": "^0.2.17",
"pluralize": "latest",
"strip-ansi": "^6.0.1",
"table": "latest",
"text-table": "latest",
"tmp": "^0.2.3",
"xpath": "latest"
},
"devDependencies": {
"chai": "^4.3.10",
"jsonschema": "latest",
"mkdirp": "^3.0.1",
"mocha": "^9.1.3",
"mocha-badge-generator": "^0.10.6",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^17.0.0",
"peggy": "^3.0.2"
},
"overrides": {
"badge-up": "https://registry.npmjs.org/@rpl/badge-up/-/badge-up-3.0.0.tgz",
"nth-check": "^2.0.1",
"svgo": "^3.3.2",
"uuid": "^7.0.3"
},
"engines": {
"node": ">= 20",
"npm": ">= 10.5.0"
}
}