forked from doczjs/docz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 789 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 789 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
26
27
28
29
30
{
"private": true,
"license": "MIT",
"scripts": {
"clean": "lerna clean",
"bs": "lerna bootstrap",
"packages": "run-s packages:*",
"packages:fix": "lerna run fix",
"packages:lint": "lerna run tslint",
"packages:build": "lerna run build --ignore docz-example-*",
"prerelease": "yarn run packages",
"release": "lerna publish --conventional-commits",
"release:beta": "yarn release --npm-tag=beta --preid=beta"
},
"devDependencies": {
"del": "^3.0.0",
"lerna": "^2.11.0",
"libundler": "^1.7.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.5",
"trash-cli": "^1.4.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.9.1"
},
"workspaces": [
"packages/*",
"examples/*"
]
}