forked from xgfe/react-native-label-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.16 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.16 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
55
{
"name": "react-native-label-select",
"version": "1.1.0",
"description": "A label select component for React Native apps",
"keywords": [
"label",
"select",
"react-native",
"react"
],
"main": "LabelSelect/index.js",
"author": {
"name": "wytiny",
"url": "http://wytiny.com"
},
"maintainers": [
{
"name": "wytiny",
"email": "zjutiny@gmail.com"
}
],
"bugs": {
"url": "https://github.com/Tinysymphony/react-native-label-select/issues"
},
"homepage": "https://github.com/Tinysymphony/react-native-label-select#readme",
"license": "MIT",
"scripts": {
"start": "react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {},
"devDependencies": {
"babel-jest": "^25.4.0",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"istanbul": "^0.4.5",
"jest": "^25.4.0",
"jsdom": "^16.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "^0.62.2",
"react-test-renderer": "^16.13.1"
},
"jest": {
"preset":"react-native",
"verbose": true,
"moduleFileExtensions": [
"js",
"json"
]
}
}