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
40 lines (40 loc) · 1.38 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "ibm-openapi-validator",
"workspaces": [
"packages/utilities",
"packages/ruleset",
"packages/validator"
],
"version": "0.0.0",
"license": "Apache-2.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-utilities": "npm run test --workspace packages/utilities",
"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",
"format-readme-toc": "markdown-toc --maxdepth 5 -i README.md"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.0",
"jest": "^27.4.5",
"markdown-toc": "^1.2.0",
"prettier": "^2.8.4",
"semantic-release": "^19.0.2"
}
}