-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "react-native-autocomplete-select",
"version": "1.0.0",
"description": "AutoComplete with selection for react-native",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/Vizir/react-native-autocomplete-select.git"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"precommit": "npm run lint && npm test",
"test": "NODE_ENV=production jest"
},
"keywords": [
"react-native",
"autocomplete",
"select"
],
"author": "Thiago Porto",
"license": "MIT",
"dependencies": {
"react": ">=15.4.1",
"react-native": ">=0.38.0",
"string_score": "git+https://github.com/ThiagoNP/string_score.git"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-react-native": "^1.9.1",
"enzyme": "^2.7.1",
"husky": "^0.13.1",
"jest": "^18.1.0",
"react-addons-test-utils": ">=15.4.1",
"react-dom": ">=15.4.1",
"snazzy": "^6.0.0",
"standard": "^8.6.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js",
"AutoComplete/**/*.js"
],
"coverageDirectory": "./coverage",
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!react-native)"
]
},
"standard": {
"parser": "babel-eslint"
}
}