forked from cactis/react-native-select-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@tele2/react-native-select-input",
"description": "Easy-peasy select input picker for React Native",
"version": "1.1.0",
"author": {
"name": "Lucas Bento",
"email": "lucas.bento@tele2.com",
"url": "https://github.com/lucasbento"
},
"bugs": "https://github.com/Tele2-NL/react-native-select-input/issues",
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-preset-react-native": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^3.1.0",
"jest": "^21.2.1",
"prop-types": "~15.6.0",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-native": "~0.50.3"
},
"homepage": "https://github.com/Tele2-NL/react-native-select-input#readme",
"jest": {
"preset": "react-native",
"setupFiles": [
"<rootDir>/tests/setupTests.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"keywords": [
"android",
"ios",
"picker",
"react",
"react-native",
"select"
],
"license": "MIT",
"main": "./src/index.js",
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-native": "*"
},
"repository": {
"type": "git",
"url": "http://github.com/Tele2-NL/react-native-select-input"
},
"scripts": {
"ci": "npm run lint && npm run test -- --runInBand",
"lint": "eslint ./src",
"test": "jest"
}
}