-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "dirs-limiter",
"version": "0.1.4",
"description": "setting git push limits by configuration",
"main": "./src/cli.js",
"bin": "./bin/dirs-limiter.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Deol/dirs-limiter.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.js": [
"node ./bin/dirs-limiter.js --config ./example/dirs-limiter.config.js",
"eslint --fix",
"git add"
]
},
"keywords": [
"directory",
"limiter",
"dir"
],
"author": "Aeo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Deol/dirs-limiter/issues"
},
"homepage": "https://github.com/Deol/dirs-limiter#readme",
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-kaola": "^0.2.7-beat-14",
"husky": "^3.0.9",
"lint-staged": "^8.2.1"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.2",
"micromatch": "^4.0.2"
}
}