-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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": "DepsAnalyzer",
"version": "0.1.0",
"description": "A Node.js CLI to list dependencies and fetch informations from NPM registry",
"main": "index.js",
"bin": {
"deps-analyzer": "bin/deps-analyzer.js"
},
"repository": "[email protected]:Nilmanduil/DepsAnalyzer.git",
"author": "Thibault Goudouneix <[email protected]>",
"license": "GNUv3",
"private": false,
"type": "module",
"keywords": [
"cli",
"node",
"nodejs",
"javascript",
"dependencies",
"analysis",
"security"
],
"scripts": {
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint .",
"lint:precommit": "prettier --write --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --fix .",
"postinstall": "husky install",
"test": "echo 'No tests yet!'"
},
"dependencies": {
"commander": "9.4.1",
"delay": "5.0.0",
"listr2": "5.0.5"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"prettier": "2.7.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint"
}
}
}