forked from apiaryio/dredd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 963 Bytes
/
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
{
"private": true,
"scripts": {
"build": "lerna exec --scope=\"*\" yarn build",
"prettify:check": "lerna exec --scope=\"dredd\" yarn prettify:check",
"docs:lint": "sphinx-build -nW -b linkcheck ./docs ./docs/_build",
"docs:test-extensions": "python -m unittest docs/_extensions/*.py --verbose",
"docs:build": "sphinx-build -nW -b html ./docs ./docs/_build",
"docs:serve": "sphinx-autobuild ./docs ./docs/_build",
"commit:lint": "./scripts/commitlint.sh",
"lint": "lerna exec --scope=\"*\" --concurrency=1 --no-bail yarn lint",
"test:smoke": "lerna exec --scope=\"*\" --concurrency=1 --no-bail yarn test:smoke",
"test": "lerna exec --scope=\"*\" --concurrency=1 --no-bail yarn test"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"commitlint-circle": "1.0.0",
"lerna": "^3.16.4"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}