forked from sospedra/react-native-dual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "react-native-dual",
"version": "1.3.0",
"description": "View, ScrollView, ListView and FlatList with dual background",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"test:lint": "standard",
"test:unit": "jest",
"test": "npm run test:lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sospedra/react-native-dual.git"
},
"keywords": [
"react-native",
"background",
"color",
"dual",
"scrollview",
"flatlist",
"listview"
],
"author": "Ruben Sospedra",
"license": "MIT",
"bugs": {
"url": "https://github.com/sospedra/react-native-dual/issues"
},
"homepage": "https://github.com/sospedra/react-native-dual#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^21.2.1",
"react": "*",
"react-native": "*",
"react-test-renderer": "^16.2.0",
"standard": "^10.0.3"
},
"jest": {
"preset": "react-native",
"collectCoverage": true
}
}