forked from testshallpass/react-native-dropdownalert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "react-native-dropdownalert",
"version": "3.9.2",
"description": "A simple alert to notify users about new chat messages, something went wrong or everything is ok.",
"main": "DropdownAlert.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:ci": "jest && codecov"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"/Example"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"setupTestFrameworkScriptFile": "./setupTests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/testshallpass/react-native-dropdownalert.git"
},
"keywords": [
"dropdown",
"alert",
"error",
"info",
"warning",
"react-native",
"ios",
"android",
"react-component"
],
"author": "Brian Sinnicke",
"license": "MIT",
"bugs": {
"url": "https://github.com/testshallpass/react-native-dropdownalert/issues"
},
"homepage": "https://github.com/testshallpass/react-native-dropdownalert#readme",
"devDependencies": {
"babel-jest": "22.4.1",
"babel-preset-react-native": "4.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.1",
"jest": "21.1.0",
"prop-types": "15.5.10",
"react": "16.3.1",
"react-dom": "16.3.1",
"react-native": "0.55.4",
"react-test-renderer": "16.3.1"
},
"dependencies": {
"prop-types": "15.5.10"
}
}