forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 906 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,
"workspaces": [
"packages/*"
],
"devDependencies": {
"benchmark": "^2.1.4",
"lerna": "^2.10.1",
"nyc": "^11.6.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"ts-loader": "^4.1.0",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"scripts": {
"build": "yarn install && lerna bootstrap && lerna run build --sort",
"cover": "lerna run cover",
"depgraph": "scripts/depgraph && git add assets/deps.png && git commit -m 'docs: update dep graph' && git push",
"doc": "lerna run doc",
"examples": "ex=\"examples/*\"; for e in $ex; do (cd $e && yarn install && yarn build); done",
"pub": "lerna publish && yarn depgraph && yarn doc && scripts/upload-docs",
"test": "yarn build && lerna run test"
}
}