-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
88 lines (88 loc) · 2.44 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
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
{
"name": "libyear",
"version": "0.9.0",
"description": "A simple measure of software dependency freshness",
"author": "Joshua David <@jdanil>",
"contributors": [
"Jared Beck <@jaredbeck>",
"Leon Miller-Out <@sbleon>"
],
"license": "LGPL-3.0",
"homepage": "https://github.com/jdanil/libyear",
"repository": {
"type": "git",
"url": "https://github.com/jdanil/libyear.git"
},
"bugs": {
"url": "https://github.com/jdanil/libyear/issues"
},
"main": "./src",
"exports": "./src/index.js",
"bin": "./bin/libyear.js",
"type": "module",
"types": "./src",
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"src/**/*.d.ts",
"src/**/*.js"
],
"keywords": [
"debt",
"dependency",
"drift",
"fitness",
"libyear",
"outdated"
],
"engines": {
"node": "^18.19 || ^20 || >=22"
},
"packageManager": "yarn@4.3.1",
"scripts": {
"clean": "tsc --build --clean",
"compile": "tsc --build",
"compile:dry-run": "tsc --noEmit",
"format": "prettier",
"format:all": "yarn format .",
"format:diff": "pretty-quick",
"libyear": "node --loader ts-node/esm --es-module-specifier-resolution=node ./bin/libyear",
"lint": "eslint --cache --cache-strategy=content",
"lint:all": "yarn lint \"**/*\"",
"lint:diff": "FILES=$(git diff --diff-filter=ACMRTUB --name-only --relative master); [ -z ${FILES} ] || yarn lint --no-error-on-unmatched-pattern ${FILES}",
"prepack": "tsc --build --force",
"prepare": "[ -n ${CI:-} ] || husky",
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --config .jestrc.json",
"test:ci": "yarn test --ci",
"test:ci:branch": "yarn test:ci --changedSince=master"
},
"dependencies": {
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"date-fns": "^3.6.0",
"execa": "^9.3.0",
"lodash-es": "^4.17.21",
"p-limit": "^6.0.0",
"semver": "^7.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.6.0",
"@jest/globals": "^29.7.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.10",
"@types/semver": "^7.5.8",
"eslint": "^9.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0"
}
}