-
-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
81 lines (81 loc) · 2.04 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
77
78
79
80
81
{
"name": "enhanced-github",
"version": "6.1.0",
"description": "Add-ons for GitHub website - Repo size, Download File, display size of each file and Copy file contents",
"main": "src/inject.js",
"scripts": {
"dev": "webpack --watch --mode=development",
"prod": "webpack --mode=production",
"lint": "eslint 'src/*.js' --fix",
"prettier": "./node_modules/prettier/bin-prettier.js --write",
"test:dev": "jest --config=jest.config.js --watch --debug --colors --errorOnDeprecated",
"test": "jest --config=jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softvar/enhanced-github.git"
},
"author": "Varun Malhotra",
"license": "MIT",
"bugs": {
"url": "https://github.com/softvar/enhanced-github/issues"
},
"homepage": "https://github.com/softvar/enhanced-github#readme",
"keywords": [
"extension",
"github",
"enhanced-github",
"repo-size",
"file-size",
"file-download"
],
"dependencies": {
"clipboard": "^2.0.11"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@eslint/js": "^9.4.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.3",
"prettier": "^3.2.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"zip-webpack-plugin": "^4.0.1"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"lint-staged": {
"globOptions": {
"matchBase": false
},
"linters": {
"**/*.js": [
"prettier",
"git add"
],
"**/*.{json,md}": [
"prettier",
"git add"
]
}
},
"engineStrict": true,
"engines": {
"node": ">= 18.18.0"
}
}