forked from jdanil/libyear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.47 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
89
90
{
"name": "libyear",
"version": "0.8.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",
"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": ">=14"
},
"packageManager": "yarn@3.2.1",
"scripts": {
"audit-ci": "audit-ci --config .auditcirc.json",
"clean": "tsc --build --clean",
"compile": "tsc --build",
"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": "is-ci || husky install",
"test": "jest --config .jestrc.json --passWithNoTests",
"test:ci": "yarn test --ci",
"test:ci:branch": "yarn test:ci --changedSince=master"
},
"dependencies": {
"chalk": "^5.0.1",
"cosmiconfig": "^7.0.1",
"date-fns": "^2.28.0",
"execa": "^6.1.0",
"lodash-es": "^4.17.21",
"mri": "^1.2.0",
"semver": "^7.3.7"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@jest/globals": "^28.1.0",
"@types/lodash-es": "^4.14.182",
"@types/node": "^17.0.36",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"audit-ci": "^6.3.0",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.3",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"tslib": "^2.4.0",
"typescript": "^4.7.2"
}
}