forked from apiaryio/api-elements.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 724 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 724 Bytes
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
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"release": "lerna publish",
"release:force": "lerna publish --force-publish",
"lint": "lerna exec --scope='*' --concurrency 1 --no-bail -- npm run lint",
"lint:fix": "lerna exec --scope='*' --concurrency 1 --no-bail -- npm run lint:fix",
"test": "lerna exec --scope='*' --concurrency 1 --no-bail -- npm run test",
"cover": "exit 0"
},
"devDependencies": {
"@commitlint/cli": "7.3.2",
"@commitlint/config-conventional": "7.3.1",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jsdoc": "^3.5.5",
"lerna": "^3.4.0"
}
}