forked from jacklam718/react-native-modals
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "react-native-popup-dialog",
"version": "0.9.34",
"description": "React Native Popup Dialog for IOS & Android.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && babel src/ -d dist/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/jacklam718/react-native-popup-dialog.git"
},
"keywords": [
"dialog",
"popup",
"react dialog",
"react-native",
"react-native-popup-dialog",
"react-native-dialog",
"react native dialog",
"popup-dialog",
"react-component",
"ios",
"android"
],
"author": "jacklam <jacklam718@gmail.com> (https://github.com/jacklam718)",
"license": "MIT",
"homepage": "https://github.com/jacklam718/react-native-popup-dialog/blob/master/README.md",
"dependencies": {
"babel-plugin-flow-react-proptypes": "^4.1.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-preset-react-native": "^2.1.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-jest": "20.0.3",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"jest": "^20.0.4",
"jest-react-native": "^18.0.0",
"react": "^15.6.1",
"react-native": "0.42",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1"
},
"jest": {
"preset": "jest-react-native",
"modulePathIgnorePatterns": [
"popup-dialog-example/node_modules"
]
}
}