-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "in-situ",
"version": "2.3.0",
"description": "Download, beautify and print lines from a minified JavaScript source",
"homepage": "https://github.com/BenoitZugmeyer/in-situ",
"repository": "https://github.com/BenoitZugmeyer/in-situ.git",
"type": "module",
"bin": {
"in-situ": "./main.js"
},
"scripts": {
"lint": "eslint",
"test": "tools/test.sh",
"test:coverage": "tools/test.sh --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info && genhtml lcov.info --output-directory=coverage --rc branch_coverage=1",
"typecheck": "tsc",
"format": "prettier --write .",
"check": "npm test && tsc && prettier --check . && eslint",
"prepare": "tools/build.ts"
},
"keywords": [],
"author": "Benoît Zugmeyer <[email protected]>",
"license": "ISC",
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.25",
"cardinal": "^2.1.1",
"terser": "^5.31.6"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/cardinal": "^2.1.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.2.0",
"esbuild": "^0.23.0",
"eslint": "^9.9.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
}
}