-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "apsl-react-native-button",
"version": "3.1.1",
"description": "React Native button component with rounded corners.",
"main": "Button.js",
"scripts": {
"lint": "eslint Button.js",
"test": "npm run lint && jest --verbose"
},
"jest": {
"preset": "jest-react-native",
"modulePathIgnorePatterns": [
"Example",
"node_modules/react-native/node_modules/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|tcomb-form-native|react-native-localization|@exponent/react-native-action-sheet|rnrf-relay-renderer|redux-action-api-utils|frisbee)"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/APSL/react-native-button.git"
},
"keywords": [
"react-native",
"ios",
"android",
"react-component",
"react",
"button"
],
"author": "Alvaro Medina Ballester <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/APSL/react-native-button/issues"
},
"homepage": "https://github.com/APSL/react-native-button#readme",
"dependencies": {
"lodash.isequal": "^4.1.4",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^6.0.5",
"babel-jest": "^15.0.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-react-native": "^1.9.0",
"es6-promise": "^3.3.1",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-react-native": "^1.1.0-beta",
"jest": "^20.0.0",
"jest-react-native": "^18.0.0",
"react": "^15.4.0",
"react-native": "^0.50.0",
"react-test-renderer": "^15.4.0",
"whatwg-fetch": "^1.0.0"
}
}