forked from pixijs/filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "pixi-filters-monorepo",
"private": true,
"scripts": {
"postinstall": "run-s bootstrap",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"clean:build": "rimraf \"filters/*/{lib,dist}\" \"bundle/{lib,dist}\" tools/screenshots/dist",
"preclean": "run-s clean:build",
"clean": "lerna clean",
"predeploy": "run-s docs",
"copy:docs": "copyfiles \"docs/**\" dist",
"copy:bundle": "copyfiles -f bundle/dist/* dist",
"copy:filters": "copyfiles -f filters/*/dist/* dist/filters",
"copy:screenshots": "copyfiles tools/screenshots/dist/* dist",
"copy:demo": "copyfiles -f tools/demo/index.* dist/demo",
"copy:demoimages": "copyfiles -f tools/demo/images/* dist/demo/images",
"deploy": "node deploy",
"preci": "rimraf dist/*",
"ci": "run-s build copy:* docs",
"docs": "jsdoc -c jsdoc.conf.json -R README.md",
"lint": "eslint *.js filters tools --ignore-path .gitignore --fix",
"demo": "open http://localhost:8080/tools/demo/index.html && http-server . -s -c-1",
"examples": "run-s demo",
"prebuild": "run-s lint",
"build": "run-s build:prod build:tools",
"build:dev": "rollup -c",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"build:tools": "lerna run build --scope @tools/*",
"watch:tools": "lerna run watch --parallel --scope @tools/*",
"watch": "rollup -cw",
"lerna": "lerna",
"prerelease": "run-s build",
"release": "lerna publish",
"postrelease": "run-s deploy",
"postversion": "npm run build"
},
"devDependencies": {
"@lerna/batch-packages": "^3.13.0",
"@lerna/filter-packages": "^3.13.0",
"@lerna/project": "^3.13.1",
"@pixi/jsdoc-template": "^2.4.2",
"acorn": "^6.1.1",
"copyfiles": "^2.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"jsdoc": "^3.5.5",
"lerna": "^3.13.4",
"magic-string": "^0.25.2",
"minimist": "^1.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"rollup": "^1.11.3",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^4.0.4"
}
}