-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.39 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": "jewel-case",
"version": "0.0.0",
"exports": "./dist/index.mjs",
"bin": {
"jewelcase": "./dist/cli.mjs"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@jest/globals": "^29.3.1",
"@tsconfig/esm": "^1.0.2",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.0",
"@types/ini": "^1.3.31",
"@types/node": "20.12.7",
"@types/tar": "^6.1.4",
"@types/yargs": "^17.0.16",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.57.0",
"eslint-config-flat-gitignore": "^0.1.3",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"typescript-eslint": "^7.7.0"
},
"engines": {
"node": ">=20.12.0"
},
"packageManager": "[email protected]",
"private": true,
"scripts": {
"prepare": "npm run src:build",
"jest": "jest",
"build": "pnpm src:build",
"lint": "pnpm lint:ec && pnpm lint:eslint .",
"lint:ec": "ec",
"lint:eslint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs",
"test": "pnpm src:test && pnpm tests:start",
"src:build": "tsc --build src && node tools/package.mjs",
"src:test": "NODE_OPTIONS=--experimental-vm-modules jest --projects src",
"tests:start": "pnpm --filter ./tests start"
},
"volta": {
"node": "20.12.0",
"pnpm": "8.3.1"
},
"dependencies": {
"ini": "^4.1.0",
"s3-groundskeeper": "0.3.1",
"tar": "^6.1.13",
"yargs": "^17.6.2"
}
}