forked from pixijs/pixijs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pixi.js-monorepo",
"private": true,
"scripts": {
"start": "npm run watch",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"clean:build": "rimraf \"{bundles,packages,packages/canvas,packages/filters,out}/*/dist\"",
"preclean": "npm run clean:build",
"clean": "lerna clean",
"pretest": "npm run lint && npm run build",
"test": "floss --path test",
"unit-test": "floss --path test",
"coverage": "npm run pretest && nyc floss --path=test && nyc report --reporter=html",
"coverage:ci": "npm run pretest && nyc floss --path=test && nyc report --reporter=text-lcov > coverage.lcov",
"docs": "mkdirp dist && webdoc -R README.md",
"lint": "eslint --ext .js --ext .ts test bundles packages tools scripts --ignore-path .gitignore --max-warnings 0",
"lintfix": "npm run lint -- --fix",
"prebuild": "npm run clean:build",
"build": "npm run build:dev",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"build:dev": "rollup -c",
"build:types": "rimraf out && tsc && api-extractor-lerna-monorepo && rimraf out && ts-node-script ./scripts/injectGlobalMixins.ts",
"watch": "rollup -cw",
"lerna": "lerna",
"predist": "rimraf dist/*",
"dist": "npm run build:types && npm run docs",
"postdist": "copyfiles -f bundles/*/dist/browser/* dist && copyfiles -f \"packages/**/dist/browser/*\" dist/packages",
"prerelease": "npm run clean:build && npm test",
"postversion": "npm run build:prod && npm run build:types",
"release": "lerna publish --exact --force-publish",
"webdoc": "webdoc"
},
"pre-commit": [
"lintfix"
],
"engines": {
"node": ">=12",
"yarn": "please-use-npm",
"npm": ">=6"
},
"devDependencies": {
"@lerna/batch-packages": "^3.13.0",
"@lerna/filter-packages": "^3.13.0",
"@lerna/project": "^3.13.1",
"@microsoft/api-extractor": "^7.9.11",
"@pixi-build-tools/api-extractor-lerna-monorepo": "^1.0.1",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"@webdoc/cli": "^1.1.3",
"chai": "~3.5.0",
"copyfiles": "^2.1.0",
"cross-env": "^5.2.0",
"electron": "^4.1.4",
"eslint": "^7.2.0",
"floss": "^3.0.0",
"glob": "^7.1.3",
"lerna": "^3.13.3",
"minimist": "^1.2.0",
"nyc": "^14.1.1",
"pixi-webdoc-template": "^1.1.4",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.3",
"rollup": "^1.32.1",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.5"
}
}