-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.11 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
68
69
70
71
72
73
{
"name": "native-base-autocomplete",
"version": "1.3.2",
"description": "pure javascript autocomplete input for native-base",
"main": "src/index.js",
"options": {
"mocha": "--require react-native-mock/mock.js --require ./nbmocker.js --require @babel/register ./__tests__/*.js"
},
"scripts": {
"coverage": "node_modules/.bin/nyc mocha $npm_package_options_mocha && node_modules/.bin/nyc report --reporter=lcov",
"lint": "eslint ./src/*.js ./example/*.js",
"test": "npm run lint && npm run testonly",
"testonly": "mocha $npm_package_options_mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:thg303/native-base-autocomplete.git"
},
"files": [
"LICENSE",
"README.md",
"src/"
],
"keywords": [
"react-native",
"iOS",
"input",
"Android",
"autocomplete"
],
"author": "Ali Ghanavatian",
"license": "MIT",
"bugs": {
"url": "https://github.com/thg303/native-base-autocomplete/issues"
},
"homepage": "https://github.com/thg303/native-base-autocomplete#readme",
"peerDependencies": {
"prop-types": "*",
"react-native": "*",
"native-base": "*",
"react": "*"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"@babel/runtime": "^7.4.2",
"@react-native-community/eslint-config": "^0.0.3",
"babel-jest": "^24.5.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "^5.16.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",
"jest": "^24.5.0",
"metro-react-native-babel-preset": "^0.53.1",
"mocha": "^6.1.4",
"native-base": "^2.12.1",
"nyc": "^14.1.1",
"prop-types": "^15.7.2",
"react": "^15.4.2",
"react-addons-test-utils": "^15.2.1",
"react-native": "^0.59.9",
"react-native-mock": "^0.3.1",
"react-test-renderer": "16.8.3",
"sinon": "^1.17.4"
}
}