forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 930 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
27
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"benchmark": "^2.1.4",
"lerna": "^2.11.0",
"mocha": "^5.1.1",
"nyc": "^11.7.2",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"build": "yarn install && lerna -v && 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 build); done",
"pub": "lerna publish && yarn depgraph && yarn doc && scripts/upload-docs",
"test": "yarn build && lerna run test"
}
}