-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "@pixi/extension-scripts",
"version": "2.4.1",
"type": "module",
"description": "Scripts for building and publishing PixiJS extensions",
"bin": {
"extension-scripts": "lib/index.mjs",
"xs": "lib/index.mjs"
},
"exports": {
"./tsconfig": "./lib/configs/tsconfig.json",
"./eslint": "./lib/configs/eslint.json",
"./jest": "./lib/configs/jest.json"
},
"scripts": {
"test": "npm run lint && cd test && npm i && npm test",
"lint": "eslint --ext .mjs -c lib/configs/eslint.json lib --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"preversion": "npm test",
"postversion": "npm publish && git push && git push --tags"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/extension-scripts.git"
},
"keywords": [],
"author": "Matt Karl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixijs/extension-scripts/issues"
},
"homepage": "https://github.com/pixijs/extension-scripts#readme",
"dependencies": {
"@kayahr/jest-electron-runner": "^29.3.0",
"@pixi/eslint-config": "^5.1.0",
"@pixi/rollup-plugin-rename-node-modules": "^2.0.0",
"@pixi/webdoc-template": "^1.5.5",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/http-server": "^0.12.1",
"@types/jest": "^29.2.4",
"@webdoc/cli": "^2.2.0",
"chalk": "^5.0.0",
"clean-package": "^2.2.0",
"eslint": "^8.30.0",
"gh-pages": "^4.0.0",
"glob": "^10.3.10",
"http-server": "^14.1.1",
"inquirer": "^9.0.0",
"jest": "^29.3.1",
"jest-extended": "^1.2.1",
"jest-raw-loader": "^1.0.1",
"jest-runner": "^29.3.1",
"rimraf": "^3.0.2",
"rollup": "^3.8.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-string": "^3.0.0",
"tree-kill": "^1.2.2",
"ts-jest": "^29.0.3",
"typescript": "^5.3.0"
}
}