-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.02 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
{
"name": "loast",
"description": "CLI for testing Lighthouse APIs using OpenAPI specs",
"version": "0.0.0-development",
"bin": {
"loast": "./bin/run"
},
"bugs": "https://github.com/department-of-veterans-affairs/lighthouse-oas-tests/issues",
"dependencies": {
"@oclif/core": "^2.8.7",
"@oclif/plugin-help": "^5.2.10",
"@stoplight/spectral-core": "^1.19.4",
"@stoplight/spectral-ruleset-bundler": "^1.5.2",
"content-type": "^1.0.5",
"js-yaml": "^4.1.0",
"load-json-file": "^6.2.0",
"lodash.isequal": "^4.5.0",
"lodash.uniq": "^4.5.0",
"lodash.uniqwith": "^4.5.0",
"medium-type": "^1.0.0",
"parse-path": "^7.0.0",
"swagger-client": "^3.22.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/content-type": "^1.1.3",
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.165",
"@types/node": "^10.17.44",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^6.0.0",
"jest": "^29.5.0",
"jest-junit-reporter": "^1.1.0",
"oclif": "^3.9.1",
"prettier": "^2.1.2",
"semantic-release": "^19.0.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"overrides": {
"axios": ">=1.7.4",
"rollup": ">=3.29.5",
"cross-spawn": "^7.0.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/department-of-veterans-affairs/lighthouse-oas-tests",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "loast",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "department-of-veterans-affairs/lighthouse-oas-tests",
"scripts": {
"build": "rm -rf lib && tsc && cp ./src/suites/rulesets/*.yaml ./lib/suites/rulesets",
"build:tests": "rm -rf test/lib-test && tsc --project test/tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && cp ./src/suites/rulesets/*.yaml ./lib/suites/rulesets && oclif manifest && oclif readme",
"test": "npm run build:tests && jest",
"test:e2e": "npm run build:tests && jest -c jest.e2e.config.js",
"test:ci": "npm run build:tests && jest --coverage",
"test:clear": "jest --clearCache",
"test:debug": "npm run build:tests && node --inspect node_modules/.bin/jest --runInBand",
"test:watch": "npm run build:tests && jest --watchAll",
"version": "oclif readme && git add README.md",
"lint": "eslint . --ext .ts --config .eslintrc.js",
"lint:fix": "eslint . --ext .ts --config .eslintrc.js --fix",
"release": "semantic-release"
},
"types": "lib/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}