-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.23 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
{
"name": "is-ignored",
"version": "1.0.0",
"description": "Check which files and directories in project are ignored for different platforms",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "bin/index.js",
"scripts": {
"build": "rimraf bin/* && tsc -p .",
"prettier": "prettier --write 'lib/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/awesome-cli/is-ignored.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"npm",
"ignore-list",
"git",
"check",
"node-modules",
"exclude",
"package"
],
"bugs": {
"url": "https://github.com/awesome-cli/is-ignored/issues"
},
"homepage": "https://github.com/awesome-cli/is-ignored#readme",
"bin": {
"is-ignored": "bin/index.js",
"ii": "bin/index.js"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.1.0",
"figlet": "^1.4.0"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/node": "^14.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"lib/**/*.ts": [
"npm run prettier"
]
}
}