-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "zerollup",
"version": "1.0.0",
"description": "Zero rollup plugins and toolset",
"private": true,
"scripts": {
"clean": "rm -rf packages/*/.rpt2_cache packages/*/dist",
"clean.all": "lerna clean --yes && rm -rf package-lock.json packages/*/package-lock.json node_modules packages/*/.rpt2_cache packages/*/dist docs/*",
"up": "ncu -u; npx lerna exec -- ncu -u; yarn clean.all; yarn",
"build": "rollup -c rollup.config.js",
"dev": "rollup -w -c rollup.config.js",
"publish": "yarn build && lerna publish --conventional-commits --yes",
"watch": "chokidar --initial -d 2000 -t 1000 'packages/*/dist/**' -c 'npm run build && cp -rvf packages/*/dist/* $npm_package_config_dest/node_modules/@zerollup'",
"test": "jest",
"test.watch": "jest --watch"
},
"workspaces": [
"packages/*"
],
"author": {
"name": "Stefan Zerkalica",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"chokidar-cli": "^2.1.0",
"jest": "^24.9.0",
"lerna": "^3.18.3",
"rollup": "^1.26.3",
"ts-jest": "^24.1.0",
"typescript": "3.7.2"
}
}