-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1002 Bytes
/
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
{
"name": "text-provider-react-native",
"version": "1.0.6",
"description": "A component which provides all the string constants using provider pattern.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/ -d lib/",
"lint": "eslint src/"
},
"author": "Rohith R",
"contributors": [
{
"name": "Rohith R",
"email": "[email protected]"
},
{
"name": "Riya Kumar",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "10.0.2",
"babel-preset-react-native": "4.0.1",
"eslint": "6.0.1",
"eslint-plugin-react": "7.14.2",
"metro-react-native-babel-preset": "0.55.0",
"react": "16.8.6",
"react-native": "0.60.3"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"babel": {
"presets": [
"react-native"
]
},
"standard": {
"parser": "babel-eslint"
}
}