forked from apigee/apigeelint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "apigeelint",
"version": "0.2.6",
"description": "Node module to lint and Apigee Edge bundle.",
"main": "function.js",
"bin": {
"apigeelint": "./cli.js"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/apigeecs/bundle-linter"
},
"keywords": [
"API",
"bundle",
"lint",
"linter",
"Apigee",
"Edge"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/apigeecs/bundle-linter/issues"
},
"private": false,
"dependencies": {
"async": "^2.5.0",
"babel-code-frame": "latest",
"chalk": "latest",
"commander": "^2.9.0",
"debug": "latest",
"decache": "latest",
"decompress": "latest",
"js-yaml": "latest",
"jshint": "^2.9.3",
"jsonschema": "latest",
"lodash": "latest",
"minimatch": "^3.0.4",
"node-find-folder": ">=0.1.25",
"path": ">= 0.11.14",
"pluralize": "latest",
"request": "latest",
"table": "latest",
"text-table": "latest",
"util": "^0.10.3",
"xmldom": ">= 0.1.22",
"xpath": "latest"
},
"devDependencies": {
"mocha-lcov-reporter": "^1.3.0",
"codacy-coverage": "^2.0.2",
"nyc": "^11.0.3"
}
}