-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "react-native-patch",
"version": "0.2.0",
"description": "This is the patcher for react-native init command so as to pass the metro bundler port while creating a react-native project",
"main": "./src/cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"lint:fix": "eslint --fix src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react-native",
"port",
"patcher"
],
"author": "nikhil.thakkar1987@gmail.com",
"license": "MIT",
"bin": {
"react-native-patch": "./src/cli.js",
"rnp": "./src/cli.js"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.16.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nikhil-thakkar/react-native-patch.git"
}
}