forked from Cero-Studio/ReactNativeWheelPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "react-native-wheel-picker-android",
"version": "1.0.0",
"description": "Simple Wheel Picker for Android to use with react-native",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ElekenAgency/ReactNativeWheelPicker.git"
},
"keywords": [
"react-component",
"react-native",
"android",
"picker",
"wheel-picker"
],
"author": "Artem Kosiakevych <artem.kosiakevych@eleken.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ElekenAgency/ReactNativeWheelPicker/issues"
},
"homepage": "https://github.com/ElekenAgency/ReactNativeWheelPicker",
"scripts": {
"fix": "eslint --fix",
"lint": "eslint .",
"test": "ava"
},
"ava": {
"babel": "inherit",
"files": [ "Tests/**/*.js", "!Tests/Setup.js" ],
"require": [
"babel-register",
"babel-polyfill",
"react-native-mock/mock",
"./Tests/Setup"
]
},
"devDependencies": {
"ava": "^0.17.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"pre-commit": "^1.2.2",
"react-native-mock": "^0.2.9"
},
"pre-commit": [
"test"
]
}