forked from byteburgers/react-native-autocomplete-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "react-native-autocomplete-input",
"version": "3.6.0",
"description": "Pure javascript autocomplete input for react-native",
"main": "index.js",
"options": {
"mocha": "--require react-native-mock/mock.js --compilers js:babel-register ./__tests__/**/*.js"
},
"scripts": {
"coverage": "node_modules/.bin/nyc mocha $npm_package_options_mocha && node_modules/.bin/nyc report --reporter=lcov",
"lint": "eslint ./*.js ./example/*.js",
"test": "npm run lint && npm run testonly",
"testonly": "mocha $npm_package_options_mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mrlaessig/react-native-autocomplete-input.git"
},
"files": [
"LICENSE",
"README.md",
"index.js"
],
"keywords": [
"react-native",
"iOS",
"input",
"Android",
"autocomplete"
],
"author": "Laurence Bortfeld",
"license": "MIT",
"bugs": {
"url": "https://github.com/l-urence/react-native-autocomplete-input/issues"
},
"homepage": "https://github.com/l-urence/react-native-autocomplete-input#readme",
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-react-native": "^1.9.1",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.2.0",
"estraverse-fb": "^1.3.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"react": "~15.4.0-rc.4",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"react-native": "^0.40.0",
"react-native-mock": "^0.3.1",
"sinon": "^1.17.4"
}
}