-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "react-native-textarea",
"version": "1.0.4",
"description": "React Native textarea component",
"main": "src/index.js",
"scripts": {
"start": "npm run ios",
"ios": "cd examples/Basic && npm install && npm run ios",
"android": "cd examples/Basic && npm install && npm run android",
"lint": "eslint . --cache",
"lint-fix": "eslint . --fix --cache",
"test": "echo \"Error: no test specified\" && exit 1",
"ci": "npm publish"
},
"repository": {
"url": "git@github.com:xinlc/react-native-textarea.git",
"type": "git"
},
"keywords": [
"textarea",
"react-native-textarea",
"react-native",
"react-component"
],
"author": "Leo Xin <xinlichao2016@gmail.com> (https://github.com/xinlc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xinlc/react-native-textarea/issues"
},
"homepage": "https://github.com/xinlc/react-native-textarea",
"files": [
"src"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-preset-react-native": "^4.0.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"flow": "^0.2.3",
"flow-bin": "^0.49.1",
"flow-typed": "^2.1.2",
"react": "^16.3.0-alpha.1",
"react-native": "0.54.2"
}
}