forked from junedomingo/react-native-rename
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.93 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@apollosproject/react-native-rename",
"version": "3.2.13",
"description": "Rename react-native app with just one command",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"dev": "esbuild src/index.js --platform=node --bundle --outdir=lib --external:shelljs --watch",
"build": "esbuild src/index.js --platform=node --bundle --outdir=lib --external:shelljs --minify --analyze",
"prepublish": "npm run build",
"relink": "npm unlink react-native-rename && npm run prepublish && npm link",
"format": "prettier --write 'src/*.{js,jsx}'",
"lint": "eslint 'src/*.{js,jsx}'"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"npm run format",
"npm run lint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollosproject/react-native-rename.git"
},
"keywords": [
"react-native",
"ios",
"android",
"rename",
"renamer",
"react",
"space"
],
"author": {
"email": "[email protected]",
"name": "Apollos Apps"
},
"license": "MIT",
"bin": {
"react-native-rename": "lib/index.js"
},
"bugs": {
"url": "https://github.com/apollosproject/react-native-rename/issues"
},
"homepage": "https://github.com/apollosproject/react-native-rename#readme",
"devDependencies": {
"esbuild": "^0.17.17",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7"
},
"dependencies": {
"chalk": "^5.2.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"globby": "^13.1.3",
"html-entities": "^2.3.3",
"normalize-path": "^3.0.0",
"replace-in-file": "^6.3.5",
"shelljs": "^0.8.5",
"update-check": "^1.5.4"
}
}