-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "react-native-button-component",
"version": "0.2.30",
"description": "A Beautiful, Customizable React Native Button component for iOS & Android",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && babel src/ -d dist/",
"test": "jest"
},
"directories": {
"doc": "docs",
"example": "example"
},
"repository": {
"type": "git",
"url": "https://github.com/jacklam718/react-native-button-component.git"
},
"keywords": [
"react button",
"react-native",
"react-native-button-component",
"react-native-button",
"react native button",
"button",
"component",
"react-component",
"react-native-component",
"ios",
"android"
],
"author": "jacklam <jacklam718@gmail.com> (https://github.com/jacklam718)",
"license": "MIT",
"homepage": "https://github.com/jacklam718/react-native-button-component/blob/master/README.md",
"rnpm": {
"commands": {
"postlink": "node ./node_modules/react-native-button-component/scripts/link.js"
}
},
"dependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"lodash": "^4.17.14",
"react-native-circular-progress": "https://github.com/jacklam718/react-native-circular-progress/archive/v0.0.10.tar.gz",
"react-native-linear-gradient": "^2.4.0",
"react-native-spinkit": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.1.0",
"eslint": "^3.12.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.8.0",
"jest": "20.0.4",
"jest-react-native": "^18.0.0",
"prop-types": "^15.6.1",
"react": "16.0.0-alpha.12",
"react-native": "0.47.1",
"react-test-renderer": "16.0.0-alpha.12",
"rimraf": "^2.6.1"
},
"jest": {
"preset": "jest-react-native",
"modulePathIgnorePatterns": [
"ButtonExample/node_modules"
]
}
}