-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 897 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 897 Bytes
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
{
"name": "react-native-selector",
"version": "1.0.4",
"description": "select component for react-native",
"author": {
"name": "yangyiliang",
"email": "394720943@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/yylgit/react-native-selector.git"
},
"keywords": [
"react-native",
"react-native-select"
],
"main": "index.js",
"examples": [
"example/index.ios.js",
"example/index.android.js"
],
"scripts": {
"start": "react-native start",
"clean:babelrc": "find ./node_modules -name react-packager -prune -o -name '.babelrc' -print | xargs rm -f",
"postinstall": "npm run clean:babelrc",
"postversion": "git push && git push --tag"
},
"license": "MIT",
"devDependencies": {
"react": "^15.3.0",
"react-native": "^0.32.0"
},
"dependencies": {
"react-native-vector-icons": "^3.0.0"
}
}