-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.66 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.66 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "flatlock",
"version": "1.5.0",
"description": "The Matlock of lockfile parsers - extracts packages without building dependency graphs",
"keywords": [
"lockfile",
"lockfiles",
"shrinkwrap",
"npm",
"pnpm",
"yarn",
"yarn-berry"
],
"homepage": "https://github.com/indexzero/flatlock#readme",
"bugs": {
"url": "https://github.com/indexzero/flatlock/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indexzero/flatlock.git"
},
"license": "Apache-2.0",
"author": "Charlie Robbins <npm@charlie.dev>",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./src/index.js"
},
"./compare": {
"types": "./dist/compare.d.ts",
"default": "./src/compare.js"
}
},
"main": "src/index.js",
"bin": {
"flatlock": "bin/flatlock.js",
"flatlock-cmp": "bin/flatlock-cmp.js",
"flatcover": "bin/flatcover.js"
},
"files": [
"src",
"dist",
"bin/flatlock.js",
"bin/flatlock-cmp.js",
"bin/flatcover.js"
],
"scripts": {
"test": "node --test ./test/*.test.js ./test/**/*.test.js",
"test:coverage": "c8 node --test ./test/*.test.js",
"build:types": "tsc",
"lint": "biome lint src test",
"lint:fix": "biome lint --write src test",
"lint:md": "markdownlint-cli2 \"README.md\"",
"format": "biome format --write src test",
"format:check": "biome format src test",
"check": "biome check src test && pnpm run build:types",
"check:fix": "biome check --write src test",
"build:ncc": "./bin/ncc.sh",
"prepublishOnly": "pnpm run build:types"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"@yarnpkg/parsers": "^3.0.3",
"js-yaml": "^4.1.1",
"undici": "^7.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@vercel/ncc": "^0.38.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"c8": "^10.1.3",
"chalk": "^5.6.2",
"fast-glob": "^3.3.3",
"jackspeak": "^4.1.1",
"markdownlint-cli2": "^0.17.2",
"snyk-nodejs-lockfile-parser": "^1.55.0",
"tinyexec": "^1.0.2",
"typescript": "^5.7.2"
},
"optionalDependencies": {
"@cyclonedx/cdxgen": "^11.3.3",
"@npmcli/arborist": "^9.1.9",
"@pnpm/lockfile.fs": "^1001.0.0",
"@yarnpkg/core": "^4.5.0"
},
"packageManager": "pnpm@10.25.0",
"pnpm": {
"overrides": {
"tar": ">=7.5.3"
}
},
"engines": {
"node": ">=22"
},
"c8": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**"
],
"reporter": [
"text",
"lcov",
"html"
]
}
}