-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "react-native-clean-project",
"version": "4.0.3",
"engines": {
"node": ">=10.0.0"
},
"description": "Automating the cleaning of a React Native Project",
"main": "./source/index.js",
"bin": "./source/index.js",
"scripts": {
"dev-init": "npx react-native init example && pushd example && npm i react-native-clean-project && popd",
"dev-sync": "cp -R package.json source react-native.config.js example/node_modules/react-native-clean-project/",
"test": "jest",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pmadruga/react-native-clean-project.git"
},
"keywords": [
"react",
"native",
"clean"
],
"author": "Pedro Madruga",
"license": "MIT",
"bugs": {
"url": "https://github.com/pmadruga/react-native-clean-project/issues"
},
"homepage": "https://github.com/pmadruga/react-native-clean-project#readme",
"devDependencies": {
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.3.1",
"prettier": "2.4.1"
},
"rnpm": {
"plugin": "./source/plugin.js"
}
}