-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 988 Bytes
/
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
{
"name": "absorption",
"version": "0.8.0",
"license": "MIT",
"repository": "https://github.com/onigoetz/absorption",
"keywords": [
"git",
"code-analysis",
"metrics"
],
"type": "module",
"main": "./src/index.js",
"bin": "./src/bin.js",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cache-manager": "^6.0.0",
"cache-manager-fs-hash": "^2.0.0",
"cli-progress": "^3.6.0",
"colors": "^1.4.0",
"execa": "^9.0.0",
"find-cache-dir": "^5.0.0",
"hard-rejection": "^2.1.0",
"micromatch": "^4.0.2",
"p-queue": "^8.0.0",
"table": "^6.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"c8": "^10.0.0"
},
"scripts": {
"format": "biome format src",
"check": "biome check src",
"test": "TZ=Europe/Zurich c8 node --test __tests__/*.js",
"test:ci": "TZ=Europe/Zurich c8 -r lcov -r text node --test __tests__/*.js"
},
"packageManager": "[email protected]"
}