-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 895 Bytes
/
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": "lint-staged-filesize-limit",
"version": "1.0.1",
"description": "Prevent large files from being commited to git",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"start": "node src/index.js"
},
"bin": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/brunocabral88/lint-staged-filesize-limit.git"
},
"keywords": [
"lint-staged",
"git",
"pre-commit",
"pre-push",
"filesize",
"limit"
],
"files": [
"src"
],
"author": "Bruno Farias",
"license": "ISC",
"bugs": {
"url": "https://github.com/brunocabral88/lint-staged-filesize-limit/issues"
},
"homepage": "https://github.com/brunocabral88/lint-staged-filesize-limit#readme",
"dependencies": {
"yargs": "^17.0.0"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=2"
},
"packageManager": "[email protected]"
}