-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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": "@appandflow/touchable",
"version": "2.0.0",
"main": "./src/Touchable.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/AppAndFlow/react-native-touchable.git"
},
"bugs": {
"url": "https://github.com/AppAndFlow/react-native-touchable.git/issues"
},
"keywords": [
"react-native",
"appandflow",
"button",
"touchable"
],
"author": "AppAndFlow",
"license": "MIT",
"files": [
"/src",
"index.js"
],
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"example"
],
"transformIgnorePatterns": [
"node_modules/(?!(react-native|react-native-gesture-handler)/)"
]
},
"scripts": {
"prettier": "node ./scripts/prettier.js write",
"lint": "eslint src",
"precommit": "lint-staged",
"test": "jest",
"ci": "yarn lint && yarn flow && yarn test"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*"
},
"dependencies": {},
"devDependencies": {
"babel-preset-react-native": "^4.0.0",
"chalk": "^2.3.2",
"eslint": "^4.19.0",
"eslint-config-anf": "^0.6.2",
"flow-bin": "^0.65.0",
"glob": "^7.1.2",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"react": "^16.3.0-alpha.1",
"react-native": "^0.54.2",
"react-native-gesture-handler": "^1.0.0-alpha.41",
"react-test-renderer": "^16.2.0"
}
}