-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.87 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "swagger-spec-validator",
"version": "5.0.0",
"description": "Validate an OpenAPI/Swagger API specification using the swagger.io online validator.",
"keywords": [
"cli",
"openapi",
"openapi2",
"openapi3",
"swagger",
"validator"
],
"license": "MIT",
"homepage": "https://github.com/kevinoid/swagger-spec-validator",
"bugs": "https://github.com/kevinoid/swagger-spec-validator/issues",
"author": "Kevin Locke <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/kevinoid/swagger-spec-validator.git"
},
"type": "commonjs",
"files": [
"*.js",
"bin/",
"lib/",
"!**/.*"
],
"main": "index.js",
"exports": {
".": "./index.js",
"./cli.js": "./cli.js",
"./package.json": "./package.json"
},
"bin": {
"swagger-spec-validator": "bin/swagger-spec-validator.js"
},
"//": "All scripts should run in POSIX sh and Windows cmd.exe",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -u",
"clean": "rimraf coverage && rimraf doc",
"doc": "npm run doc-js && npm run doc-spec",
"doc-js": "rimraf doc/api && jsdoc -c jsdoc.conf.json .",
"doc-spec": "rimraf doc/spec && mkdir doc/spec && mocha --reporter doc --recursive test | nodecat doc-src/spec/header.xhtml - doc-src/spec/footer.xhtml > doc/spec/index.xhtml",
"lint": "npm run lint-js && npm run lint-doc",
"lint-doc": "jsdoc -t templates/silent -c jsdoc-lint.conf.json . && echo JSDoc passed.",
"lint-js": "eslint --report-unused-disable-directives . && echo ESLint passed.",
"postpublish": "git -C doc push && git push --follow-tags origin main gh-pages && echo Remember to update GitHub Releases from CHANGELOG.md",
"postversion": "rimraf doc && git clone -b gh-pages -l -q . doc && npm run doc && git -C doc add . && git -C doc commit -n -m \"Docs for v$npm_package_version\"",
"preversion": "npm run test-cov && c8 check-coverage --statements 90 && depcheck --ignore-dirs doc --ignores=\"eslint-*,rimraf\" && david && git-branch-is main && hub-ci-status -vv --wait",
"test": "npm run lint && npm run test-unit",
"test-cov": "npm run lint && npm run test-unit-cov",
"test-unit": "node --throw-deprecation --unhandled-rejections=strict node_modules/mocha/bin/mocha --parallel --recursive test",
"test-unit-cov": "c8 --reporter=lcov --reporter=text npm run test-unit",
"version": "npm run changelog && echo && echo === Please edit CHANGELOG.md as desired, then exit === && echo && \"${npm_config_shell:-${SHELL:-bash}}\" && git commit -m \"Update CHANGELOG.md for $npm_package_version\" CHANGELOG.md",
"version-deps": "npm install conventional-changelog-cli david depcheck git-branch-is hub-ci-status"
},
"dependencies": {
"commander": "^12.0.0"
},
"devDependencies": {
"@kevinoid/eslint-config": "^33.0.0",
"c8": "^10.0.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-regexp": "^2.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"jsdoc": "^4.0.0",
"mocha": "^10.0.0",
"nock": "^13.0.0",
"nodecat": "^2.0.0",
"proxyquire": "^2.0.0",
"regexp.escape": "^2.0.1",
"rimraf": "^5.0.0",
"sinon": "^19.0.2"
},
"engines": {
"node": ">=18",
"npm": ">=1.3.7"
},
"david": {
"//": "ESLint packages must be updated together. Only warn about @kevinoid/eslint-config",
"ignore": [
"eslint",
"eslint-config-airbnb-base",
"eslint-plugin-import",
"eslint-plugin-jsdoc",
"eslint-plugin-n",
"eslint-plugin-promise",
"eslint-plugin-regexp",
"eslint-plugin-unicorn"
]
},
"mocha": {
"checkLeaks": true,
"exit": false
},
"c8": {
"exclude": [
"test"
]
}
}