forked from expo/expo-graphics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·90 lines (90 loc) · 2.08 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
{
"name": "expo-graphics",
"version": "1.0.3",
"description": "Tools for building graphic based components in Expo",
"author": "Evan Bacon <[email protected]> (https://expo.io/)",
"files": [
"lib"
],
"homepage": "https://github.com/expo/expo-graphics#readme",
"readmeFilename": "README.md",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"react",
"native",
"expo",
"exponent",
"game",
"gl",
"graphics",
"opengl"
],
"scripts": {
"jest": "jest",
"test-update-snapshot": "jest --updateSnapshot",
"lint": "eslint .",
"format": "eslint --fix .",
"precommit": "lint-staged",
"test": "npm run lint && npm run jest"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"notify": true,
"preset": "jest-expo",
"testRegex": "/__tests__/[^/]+-test\\.js$"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-graphics.git"
},
"bugs": {
"url": "https://github.com/expo/expo-graphics/issues"
},
"directories": {
"example": "example",
"lib": "lib"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"expo": "^31.0.0"
},
"dependencies": {
"expo-gl": "^2.0.0"
},
"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": "^2.2.0",
"conventional-changelog-cli": "^2.0.5",
"eslint": "^4.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.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": "^22.1.3",
"jest-expo": "^25.1.0",
"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"
},
"eslintConfig": {
"extends": "expo"
}
}