-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "react-native-suggester",
"version": "0.1.3",
"description": "React-Native package to decorate TextInput and get suggestions with good UX",
"repository": {
"type": "git",
"url": "git+https://github.com/xcarpentier/react-native-suggester.git"
},
"keywords": [
"React-Native",
"TextInput",
"autocompletion"
],
"main": "node_modules/expo/AppEntry.js",
"types": "lib/index.d.ts",
"author": "Xavier Carpentier <[email protected]> (https://xaviercarpentier.com/)",
"license": "MIT",
"private": false,
"files": [
"lib/**/*"
],
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-typescript": "^7.1.0",
"@types/react": "^16.7.17",
"@types/react-native": "^0.57.19",
"babel-core": "^7.0.0-bridge.0",
"babel-preset-expo": "^5.0.0",
"expo": "^34.0.3",
"json": "^9.0.6",
"prettier": "1.15.3",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
"tslint": "5.12.0",
"tslint-config-prettier": "1.17.0",
"typescript": "3.2.2",
"expo-constants": "6.0.0"
},
"dependencies": {
"fuse.js": "3.3.0",
"prop-types": "15.6.2",
"tiny-emitter": "2.0.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"expo-constants": "*"
},
"scripts": {
"config:dev": "json -I -f package.json -e 'this.main=\"node_modules/expo/AppEntry.js\"'",
"config:npm": "json -I -f package.json -e 'this.main=\"lib/index.js\"'",
"build": "rm -rf lib/ && tsc",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "yarn lint && yarn build && yarn config:npm",
"postpublish": "yarn config:dev"
}
}