-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
{
"name": "lockparse",
"version": "0.0.1",
"description": "A lightweight lockfile parser.",
"files": [
"lib"
],
"keywords": [
"lockfile",
"lock",
"parse",
"pnpm",
"npm",
"yarn"
],
"homepage": "https://github.com/43081j/lockparse#readme",
"bugs": {
"url": "https://github.com/43081j/lockparse/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/43081j/lockparse.git"
},
"license": "MIT",
"author": "James Garbutt (https://github.com/43081j)",
"type": "module",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "npm run lint:js && npm run lint:ts && npm run lint:format",
"lint:js": "oxlint --type-aware src test",
"lint:ts": "tsc --noEmit -p tsconfig.test.json",
"lint:format": "prettier --check src test",
"format": "prettier --write src test",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.1.9",
"oxlint": "^1.70.0",
"oxlint-tsgolint": "^0.23.0",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"vitest": "^4.0.3"
}
}