forked from IBM/openapi-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.33 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
{
"name": "ibm-openapi-validator",
"workspaces": [
"packages/validator",
"packages/ruleset"
],
"version": "0.0.0",
"private": true,
"repository": "https://github.com/IBM/openapi-validator",
"scripts": {
"clean": "rm -rf node_modules/ && npm run clean --workspaces",
"test": "npm run test --workspaces",
"test-ruleset": "npm run test --workspace packages/ruleset",
"test-validator": "npm run test --workspace packages/validator",
"jest": "jest",
"test-travis": "npm run test-travis --workspaces",
"lint": "npm run lint --workspaces",
"fix": "npm run fix --workspaces",
"pkg": "npm run pkg --workspace packages/validator",
"link": "npm run link --workspace packages/validator",
"unlink": "npm run unlink --workspace packages/validator",
"all": "npm run test && npm run lint"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-prettier": "^2.7.0",
"jest": "^27.4.5",
"prettier": "^1.19.1",
"semantic-release": "^19.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}