-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "gitignore-to-glob",
"version": "0.3.1-pre",
"description": "Transforms .gitignore patterns to ones compatible with the glob package (used by Grunt & others)",
"homepage": "https://github.com/EE/gitignore-to-glob",
"author": {
"name": "Michał Gołębiowski-Owczarek",
"email": "[email protected]"
},
"keywords": [
"gitignore",
"glob"
],
"repository": {
"type": "git",
"url": "https://github.com/EE/gitignore-to-glob.git"
},
"bugs": "https://github.com/EE/gitignore-to-glob/issues",
"license": "MIT",
"main": "lib/gitignore-to-glob.js",
"files": [
"index.js",
"lib"
],
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-mgol": "0.0.47",
"grunt": "1.1.0",
"grunt-cli": "1.3.2",
"grunt-contrib-clean": "2.0.0",
"grunt-eslint": "22.0.0",
"grunt-mocha-test": "0.13.3",
"husky": "4.2.3",
"lint-staged": "10.1.1",
"load-grunt-tasks": "5.1.0",
"mocha": "7.1.1",
"prettier": "2.0.2",
"time-grunt": "2.0.0"
},
"scripts": {
"prettier-check": "prettier --check \"**/*.{json,js,yml,yaml,md}\"",
"prettier-format": "prettier --write \"**/*.{json,js,yml,yaml,md}\"",
"test": "npm run prettier-check && grunt"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,yml,yaml,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}