forked from lawnstarter/react-native-picker-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.04 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
64
65
66
67
{
"name": "react-native-picker-select",
"version": "4.4.0",
"description": "A Picker component for React Native which emulates the native <select> interfaces for each platform",
"license": "MIT",
"author": "Michael Lefkowitz <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/lawnstarter/react-native-picker-select.git"
},
"main": "src/index.js",
"keywords": [
"dropdown",
"picker",
"select",
"react",
"react-native",
"react native",
"expo",
"items"
],
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"src/index.js"
],
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"babel-jest": "^23.4.0",
"babel-preset-react-native": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint-config-ls-react": "https://github.com/lawnstarter/eslint-config-ls-react#2.0.1",
"husky": "^0.14.3",
"jest": "^23.4.1",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"prop-types": "^15.6.2",
"react": "16.4.1",
"react-dom": "^16.4.1",
"react-native": "0.55.4",
"react-test-renderer": "^16.4.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"open:coverage": "open ./coverage/lcov-report/index.html",
"precommit": "pretty-quick --staged",
"prettier:debug-check": "prettier --config ./.prettierrc.js --debug-check \"{src,test}/**/*.js\"",
"preprettier:all": "yarn run prettier:debug-check",
"prettier:all": "prettier --config ./.prettierrc.js --write \"{src,test}/**/*.js\""
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}