-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
63 lines (63 loc) · 1.53 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
60
61
62
63
{
"name": "react-native-picker-xg",
"version": "1.0.0",
"private": false,
"main": "app/pickerLogic/picker.js",
"description": "react native Picker component for both Android and iOS.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:xgfe/react-native-picker-xg.git"
},
"keywords": [
"react-native",
"picker"
],
"author": "lulutia",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint . --fix",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"react-native-vector-icons": "^4.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.7.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"jest": "18.1.0",
"jsdom": "^9.11.0",
"pre-commit": "^1.2.2",
"react": "15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-native": "^0.41.2",
"react-test-renderer": "15.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"/example/"
]
},
"pre-commit": [
"lint"
]
}