-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "react-native-bundle-scale",
"version": "1.1.0",
"description": "A command-line interface to see how adding packages affects your React Native JavaScript bundle.",
"bugs": {
"url": "https://github.com/charpeni/react-native-bundle-scale/issues"
},
"homepage": "https://github.com/charpeni/react-native-bundle-scale",
"readme": "https://github.com/charpeni/react-native-bundle-scale#readme",
"repository": {
"type": "git",
"url": "https://github.com/charpeni/react-native-bundle-scale.git"
},
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"type-check": "tsc",
"prepare": "husky install"
},
"author": "Nicolas Charpentier <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^11.0.0",
"execa": "^5.1.0",
"filesize": "^10.0.7",
"ora": "^5.4.0",
"prepend-file": "^2.0.1",
"source-map-explorer": "^2.5.3",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/tmp": "^0.2.3",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": ">=8.0.3",
"lint-staged": ">=13.2.3",
"prettier": "2.8.8",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write"
]
}
}