-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.78 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
{
"name": "depreman",
"version": "0.3.4",
"license": "AGPL-3.0-only",
"description": "Manage npm deprecations",
"repository": {
"type": "git",
"url": "git+https://github.com/ericcornelissen/depreman.git"
},
"bugs": {
"url": "https://github.com/ericcornelissen/depreman/issues"
},
"author": {
"name": "Eric Cornelissen",
"email": "[email protected]",
"url": "https://ericcornelissen.dev/"
},
"keywords": [
"deprecations"
],
"bin": "./bin/cli.js",
"type": "module",
"engines": {
"node": "^20 || ^22",
"npm": "^9 || ^10"
},
"scripts": {
"audit": "npm run audit:deprecations && npm run audit:vulnerabilities",
"audit:deprecations": "npm run dogfeed",
"audit:vulnerabilities": "better-npm-audit audit",
"check": "npm run check:dependencies && npm run check:headers && npm run check:licenses && npm run check:lockfile && npm run check:manifest",
"check:dependencies": "node script/check-runtime-deps.js",
"check:headers": "node script/check-headers.js",
"check:licenses": "licensee --errors-only",
"check:lockfile": "lockfile-lint",
"check:manifest": "publint --strict && ls-engines",
"coverage": "npm run coverage:unit",
"coverage:unit": "node --test --experimental-test-coverage 'src/*.test.js'",
"dogfeed": "node bin/cli.js --errors-only --report-unused",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node --test 'src/*.test.js'",
"test:e2e": "node --test 'test/e2e.test.js'",
"verify": "npm run check && npm run test"
},
"dependencies": {
"chalk": "^5.0.0",
"semver": "^7.0.0"
},
"devDependencies": {
"better-npm-audit": "3.11.0",
"licensee": "11.1.1",
"lockfile-lint": "4.14.0",
"ls-engines": "0.9.3",
"publint": "0.2.12"
}
}