forked from alcat2008/react-native-auto-expanding-textinput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "react-native-auto-expanding-textinput",
"version": "0.0.5",
"description": "A TextInput with auto expanding function for your React Native app.",
"main": "index.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alcat2008/react-native-auto-expanding-textinput.git"
},
"keywords": [
"textinput",
"expanding",
"react-native",
"react-component",
"ios",
"android"
],
"author": "alcat2008",
"license": "MIT",
"bugs": {
"url": "https://github.com/alcat2008/react-native-loading/issues"
},
"homepage": "https://github.com/alcat2008/react-native-loading#readme",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^5.0.0",
"chai": "^3.5.0",
"eslint": "^2.4.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-flow-vars": "^0.2.1",
"eslint-plugin-react": "^4.2.2",
"estraverse-fb": "^1.3.1",
"jest-cli": "^0.9.2"
},
"peerDependencies": {
"react": "^15.3.0",
"react-native": "^0.27.2"
},
"jest": {
"rootDir": "./",
"scriptPreprocessor": "<rootDir>/node_modules/react-native/jestSupport/preprocessor.js",
"setupEnvScriptFile": "<rootDir>/node_modules/react-native/jestSupport/env.js",
"testPathIgnorePatterns": [
"/node_modules/",
"packager/react-packager/src/Activity/"
],
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"promise",
"source-map"
]
}
}