forked from IBM/openapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "ibm-openapi-validator",
"description": "Configurable and extensible validator/linter for OpenAPI documents",
"version": "0.12.4",
"main": "src/lib/index.js",
"repository": "https://github.com/IBM/openapi-validator",
"license": "Apache-2.0",
"scripts": {
"link": "npm install -g",
"unlink": "npm uninstall -g",
"test": "nyc mocha --recursive test/",
"test-validators": "mocha --recursive test/plugins",
"test-cli-tool": "mocha test/cli-validator/tests",
"test-travis": "npm run lint && nyc mocha --recursive --grep @skip-ci --invert test/",
"lint": "eslint --cache --quiet --ext '.js' src test",
"fix": "eslint --fix --ext '.js' src test",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"pkg": "./node_modules/.bin/pkg --out-path=./bin ./package.json; cd bin; rename -f 's/ibm-openapi-validator-(linux|macos|win)/lint-openapi-$1/g' ./ibm-openapi-*"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.17.1",
"deepmerge": "^2.1.1",
"find-up": "^3.0.0",
"globby": "^8.0.1",
"js-yaml": "^3.13.1",
"json-dup-key-validator": "^1.0.2",
"json-schema-ref-parser": "^5.1.3",
"jsonschema": "^1.2.4",
"lodash": "^4.17.11",
"matcher": "^1.1.1",
"pad": "^2.2.1",
"require-all": "^3.0.0",
"semver": "^5.5.1",
"update-notifier": "^2.5.0",
"validator": "^11.0.0",
"yaml-js": "^0.2.3"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.7",
"babel-eslint": "^9.0.0",
"codecov": "^3.5.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"expect": "^23.5.0",
"intercept-stdout": "^0.1.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"pkg": "^4.4.0",
"prettier": "^1.14.2",
"semantic-release": "^15.13.16",
"strip-ansi": "^4.0.0"
},
"bin": {
"lint-openapi": "src/cli-validator/index.js"
},
"engines": {
"node": ">=8.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"pkg": {
"scripts": "src/**/*.js"
}
}