-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.72 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.72 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "depreman",
"version": "0.3.13",
"license": "AGPL-3.0-only",
"description": "Manage npm deprecation warnings",
"repository": {
"type": "git",
"url": "git+https://github.com/ericcornelissen/depreman.git"
},
"bugs": {
"url": "https://github.com/ericcornelissen/depreman/issues"
},
"author": {
"name": "Eric Cornelissen",
"email": "ericornelissen@gmail.com",
"url": "https://ericcornelissen.dev/"
},
"keywords": [
"deprecations"
],
"bin": "./bin/cli.js",
"man": "./bin/man/depreman.1",
"type": "module",
"engines": {
"node": "^20 || ^22 || ^24 || ^26",
"npm": "^9 || ^10 || ^11",
"yarn": "^4.1.0"
},
"scripts": {
"_dev-env": "docker run -it --rm --workdir '/depreman' --mount 'type=bind,source=.,target=/depreman' --name depreman-dev-env depreman-dev-img",
"_eslint": "eslint --config .eslintrc.js",
"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:js && npm run check:json && npm run check:licenses && npm run check:lockfile && npm run check:manifest && npm run check:md && npm run check:yml",
"check:dependencies": "node script/check-runtime-deps.js",
"check:headers": "node script/check-headers.js",
"check:js": "npm run _eslint -- '**/*.js'",
"check:json": "npm run _eslint -- '**/*.json'",
"check:licenses": "licensee --errors-only",
"check:lockfile": "lockfile-lint",
"check:manifest": "npmPkgJsonLint --quiet --configFile ./.manifest-lintrc.json ./package.json && publint --pack npm --strict && ls-engines",
"check:md": "npm run check:md:code && npm run check:md:text",
"check:md:code": "npm run _eslint -- '**/*.md**'",
"check:md:text": "npm run _eslint -- '**/*.md'",
"check:yml": "npm run _eslint -- '**/*.yml'",
"clean": "git clean --force -X test/fixtures/*/node_modules test/fixtures/yarn/.yarn* mutation.html unit.lcov",
"coverage": "npm run coverage:unit",
"coverage:unit": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=unit.lcov 'src/*.test.js' && lcov-total unit.lcov --gte=100",
"dev-env": "npm run dev-img && npm run _dev-env",
"dev-img": "docker build --file Containerfile.dev --tag depreman-dev-img .",
"dogfeed": "node bin/cli.js --errors-only --report-unused",
"mutation": "stryker run .stryker.js",
"package": "strip-directives bin/*.js src/*.js",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node --test 'src/*.test.js'",
"test:watch": "node --test --watch 'src/*.test.js'",
"test:e2e": "node --test test/e2e.test.js",
"verify": "npm run check && npm run coverage"
},
"dependencies": {
"chalk": "^5.0.0",
"semver": "^7.0.0"
},
"devDependencies": {
"@ericcornelissen/eslint-plugin-top": "3.6.2",
"@eslint/json": "2.0.0",
"@eslint/markdown": "8.0.1",
"@stryker-mutator/core": "9.6.1",
"@stryker-mutator/tap-runner": "9.6.1",
"better-npm-audit": "3.11.0",
"ci-info": "4.3.1",
"eslint": "9.38.0",
"eslint-plugin-depend": "1.4.0",
"eslint-plugin-functional": "10.0.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "63.0.0",
"eslint-plugin-regexp": "3.0.0",
"eslint-plugin-unicorn": "64.0.0",
"eslint-plugin-yml": "3.3.1",
"fast-check": "4.7.0",
"lcov-total": "2.1.1",
"licensee": "12.0.1",
"lockfile-lint": "5.0.0",
"ls-engines": "0.10.0",
"npm-package-json-lint": "10.4.0",
"publint": "0.3.20",
"strip-directives": "2.0.0",
"which": "7.0.0"
}
}