forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.22 KB
/
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
28
29
30
31
32
33
34
35
36
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"benchmark": "^2.1.4",
"file-loader": "^3.0.1",
"gzip-size": "^5.1.0",
"lerna": "^3.13.3",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"parcel-bundler": "^1.12.3",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",
"rollup-plugin-cleanup": "^3.1.1",
"terser": "^3.17.0",
"ts-loader": "^5.4.3",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "yarn install && lerna -v && lerna bootstrap && lerna run build --sort",
"build:es6only": "lerna run clean && lerna run build:es6",
"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": "scripts/build-examples",
"pub": "lerna publish --registry https://registry.npmjs.org/ && yarn doc && scripts/upload-docs",
"test": "yarn build && yarn test:only",
"test:only": "lerna run test"
}
}