-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
109 lines (109 loc) · 2.72 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
{
"name": "react-pixi",
"version": "0.9.19",
"description": "Construct PIXI.js scenes using React",
"keywords": [
"react",
"reactjs",
"pixi",
"pixijs",
"webGL",
"canvas"
],
"author": {
"name": "Gary Haussmann",
"email": "gjhaussmann@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Izzimach/react-pixi"
},
"license": "Apache-2.0",
"files": [
"es5",
"react-pixi.d.ts",
"src"
],
"types": "react-pixi.d.ts",
"main": "es5/react-pixi-commonjs.js",
"dependencies": {
"@types/pixi.js": "^4.4.2",
"@types/react": "^15.0.21",
"@types/react-dom": "^0.14.23",
"brfs": "^1.4.1",
"fbjs": "^0.7.0",
"ify-loader": "^1.0.3",
"object-assign": "^4.0.1"
},
"peerDependencies": {
"pixi.js": "^4.5.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"@types/node": "^7.0.12",
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^6.6.1",
"create-react-class": "^15.6.0",
"eslint": "^2.4.0",
"expose-loader": "^0.7.0",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.3",
"karma": "~0.13.0",
"karma-firefox-launcher": "~0.1.3",
"karma-jasmine": "~0.3.2",
"lodash": "^4.6.1",
"node-static": "~0.7.3",
"pixi.js": "^4.5.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"resemblejs": "~2.2.0",
"rimraf": "~2.5.0",
"transform-loader": "^0.2.3",
"typescript": "^2.2.2",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"build": "webpack",
"build-commonjs": "webpack --config webpack-commonjs.config.js",
"generate-declaration": "tsc --lib es6,dom generateDeclaration.ts && node generateDeclaration.js && rm generateDeclaration.js",
"dev": "webpack-dev-server --progress --colors",
"examples": "webpack-dev-server --config webpack-examples.config.js",
"lint": "eslint src examples",
"test": "karma start",
"pixelrefs": "slimerjs test/pixels/generatetestrender.js",
"pretest": "npm run build",
"preexamples": "npm run build",
"prerendertest": "npm run build",
"prepublish": "npm run build-commonjs"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"node": true
},
"ecmaFeatures": {
"spread": true
},
"rules": {
"strict": [
0
],
"eqeqeq": 2
}
},
"engines": {
"node": ">=0.12.0"
}
}