forked from beefe/react-native-actionsheet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 KB
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
{
"name": "react-native-actionsheet",
"version": "2.4.2",
"description": "Cross platform ActionSheet. This component implements a custom ActionSheet and provides the same way to drawing it on the defferent platforms(iOS and Android). Actually, In order to keep the best effect, it still uses the ActionSheetIOS on iOS.",
"main": "lib/index.js",
"scripts": {
"lint": "standard lib/**/*.js",
"test": "jest --no-cache"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/Examples"
]
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/beefe/react-native-actionsheet.git"
},
"keywords": [
"actionsheet",
"action sheet",
"react-native",
"react-native-action-sheet",
"react-native-actionsheet",
"custom-action-sheet"
],
"author": "xiaoyann",
"license": "MIT",
"bugs": {
"url": "https://github.com/beefe/react-native-actionsheet/issues"
},
"homepage": "https://github.com/beefe/react-native-actionsheet#readme",
"peerDependencies": {
"prop-types": ">=15.4.0",
"react": ">=15.4.0",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "^4.0.0",
"jest": "^21.2.1",
"react-test-renderer": "15.4.0",
"standard": "*"
},
"standard": {
"parser": "babel-eslint"
}
}