forked from rishabhbhatia/react-native-awesome-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "react-native-awesome-alerts",
"version": "1.1.0",
"description": "Awesome alerts for React Native.",
"main": "index.js",
"scripts": {
"start": "react-native start",
"test": "node node_modules/jest/bin/jest.js --watch",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/examples/"
],
"testPathIgnorePatterns": [
"/props.js",
"<rootDir>/node_modules",
"<rootDir>/examples/"
],
"timers": "fake"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rishabhbhatia/react-native-awesome-alerts.git"
},
"keywords": [
"react-native",
"alerts",
"dialog",
"iOS",
"android"
],
"author": "rishabhbhatia",
"license": "ISC",
"bugs": {
"url": "https://github.com/rishabhbhatia/react-native-awesome-alerts/issues"
},
"homepage": "https://github.com/rishabhbhatia/react-native-awesome-alerts#readme",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"jest": "^21.0.2",
"react": "^16.0.0-alpha.12",
"react-native": "^0.47.2",
"react-test-renderer": "^16.0.0-alpha.12"
}
}