-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.55 KB
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": "npcheck",
"version": "2.0.0",
"description": "A tool to run various checks on npm modules",
"keywords": [],
"author": "Red Hat, Inc.",
"license": "ISC",
"repository": "https://github.com/nodeshift/npcheck.git",
"contributors": [
{
"name": "Alex Alikiotis",
"email": "alexalikiotis5@gmail.com"
},
{
"name": "Helio Frota",
"email": "00hf11@gmail.com"
}
],
"main": "index.js",
"bin": {
"npcheck": "index.js"
},
"engines": {
"node": ">=20"
},
"type": "commonjs",
"scripts": {
"start": "node .",
"prepare": "husky install",
"pretest": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint . --fix",
"test": "jest --no-colors",
"coverage": "jest --coverage --no-colors",
"release": "standard-version"
},
"dependencies": {
"@npmcli/arborist": "6.2.10",
"@pkgjs/nv": "^0.2.0",
"@pkgjs/support": "^0.0.5",
"axios": "^0.24.0",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"date-fns": "^3.0.5",
"figlet": "^1.5.0",
"is-git-url": "^1.0.0",
"license-checker": "^25.0.1",
"npm-audit-report": "^2.1.5",
"ramda": "^0.27.2",
"semver": "^7.5.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"eslint": "^7.18.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^6.0.0",
"jest": "^29.7.0",
"standard-version": "^9.3.2"
}
}