forked from expo/expo-pixi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.95 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
{
"name": "react-native-pixi",
"version": "3.0.0",
"sideEffects": true,
"description": "Tools for using pixi in React Native",
"license": "MIT",
"readmeFilename": "README.md",
"files": [
"lib"
],
"main": "lib/index.js",
"homepage": "https://github.com/flyskywhy/react-native-pixi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/flyskywhy/react-native-pixi.git"
},
"bugs": {
"url": "https://github.com/flyskywhy/react-native-pixi/issues"
},
"author": "Evan Bacon <bacon@expo.io> (https://expo.io/)",
"keywords": [
"android",
"canvas",
"game",
"gl",
"graphics",
"ios",
"native",
"opengl",
"pixi",
"pixi.js",
"react",
"react-native",
"sprite",
"webgl"
],
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"lint:examples": "eslint examples/",
"lint": "eslint lib/",
"lint:fix": "eslint lib/ --fix",
"sync:basic": "rsync -rv lib examples/basic/node_modules/expo-pixi/; rsync -rv package.json examples/basic/node_modules/expo-pixi/",
"sync:comprehensive": "rsync -rv lib examples/comprehensive/node_modules/expo-pixi/; rsync -rv package.json examples/comprehensive/node_modules/expo-pixi/",
"sync:filter": "rsync -rv lib examples/filter-image/node_modules/expo-pixi/; rsync -rv package.json examples/filter-image/node_modules/expo-pixi/",
"sync:signature": "rsync -rv lib examples/signature/node_modules/expo-pixi/; rsync -rv package.json examples/signature/node_modules/expo-pixi/",
"sync:sketch": "rsync -rv lib examples/sketch/node_modules/expo-pixi/; rsync -rv package.json examples/sketch/node_modules/expo-pixi/",
"sync": "npm run sync:basic; npm run sync:comprehensive; npm run sync:filter; npm run sync:signature; npm run sync:sketch"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"fbemitter": "2.1.1",
"gl-matrix": "3.4.3",
"path": "^0.12.7",
"url": "^0.11.0"
},
"peerDependencies": {
"@flyskywhy/react-native-gcanvas": "5.1.3",
"pixi.js": "*",
"pixi.js-legacy": "*"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.4.1",
"babel-preset-react-native": "^2.1.0",
"codecov": "^3.7.1",
"conventional-changelog-cli": "^2.0.5",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-universe": "^1.0.6",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"jest": "^23.4.1",
"lint-staged": "^4.2.1",
"prettier": "^1.12.1",
"prettier-eslint": "^8.8.1",
"react": "^16.2.0",
"react-native": "^0.52.0",
"react-native-vector-icons": "^4.2.0",
"react-test-renderer": "^16.0.0",
"release-it": "^7.6.1"
}
}