-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.12 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
{
"name": "@funboxteam/fazio",
"version": "1.0.0",
"description": "A tool to find an npm dep somewhere on your filesystem",
"main": "index.js",
"bin": {
"fazio": "./cli.js"
},
"scripts": {
"lint": "eslint -c .eslintrc.js --ext js .",
"prepublishOnly": "if [ -z \"$CI\" ]; then lawyer; fi",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"dependency",
"finder",
"snyk",
"filesystem"
],
"files": [
"cli.js",
"index.js",
"logger.js",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"author": "Igor Adamenko <[email protected]> (https://igoradamenko.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/funbox/fazio"
},
"dependencies": {
"commander": "8.3.0",
"semver": "7.3.5"
},
"devDependencies": {
"@funboxteam/eslint-config": "7.3.0",
"eslint": "7.32.0",
"husky": "4.3.8",
"lint-staged": "11.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -q"
}
},
"lint-staged": {
"*.js": [
"eslint --fix --cache -c .eslintrc.js"
]
}
}