forked from pixijs/pixi-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.81 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@inlet/react-pixi",
"version": "1.2.12",
"description": "Write PixiJS applications using React declarative style.",
"main": "index.js",
"umd:main": "umd.js",
"module": "module.js",
"jsnext:main": "module.js",
"author": "Patrick Brouwer",
"license": "MIT",
"repository": "git+https://github.com/inlet/react-pixi.git",
"scripts": {
"docz:dev": "rimraf ./docs && docz dev",
"docz:build": "rimraf ./docs && docz build",
"eslint": "eslint .",
"build:watch": "cross-env NODE_ENV=development rollup -c --watch",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"build": "rimraf ./dist && npm run build:dev && npm run build:prod",
"test": "jest --silent",
"test:watch": "jest --silent --watch",
"prepare": "if-env CI=true && echo \"skip build\" || (npm run test && npm run eslint && npm run build)"
},
"files": [
"dist/",
"LICENSE",
"index.d.ts",
"index.js",
"umd.js",
"module.js"
],
"typings": "./index.d.ts",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "7.5.4",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/react-reconciler": "0.18.0",
"babel-core": "^7.0.0-beta.3",
"babel-eslint": "10.0.2",
"babel-jest": "^24.8.0",
"canvas": "^2.5.0",
"cross-env": "^5.2.0",
"docz": "^1.2.0",
"docz-theme-default": "1.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"idx": "^2.5.6",
"if-env": "^1.0.4",
"jest": "^24.8.0",
"jest-webgl-canvas-mock": "^0.2.2",
"lodash": "^4.17.14",
"pixi.js": "5.0.4",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"typescript": "3.5.3"
},
"peerDependencies": {
"pixi.js": "^5.x.x",
"prop-types": "^15.x.x",
"react": "^16.x.x",
"react-dom": "^16.x.x"
},
"dependencies": {
"@testing-library/react": "8.0.5",
"fbjs": "^1.0.0",
"performance-now": "^2.1.0",
"react-reconciler": "0.21.0-alpha.0"
},
"resolutions": {
"serialize-javascript": "^2.1.1"
},
"jest": {
"collectCoverage": false,
"setupFiles": [
"jest-webgl-canvas-mock",
"./test/bootstrap.js"
]
}
}