-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
{
"name": "@clearlydefined/spdx",
"version": "0.1.10",
"description": "SPDX custom libraries of clearlydefined.io.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clearlydefined/spdx.git"
},
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"spdx"
],
"bugs": {
"url": "https://github.com/clearlydefined/spdx/issues"
},
"homepage": "https://github.com/clearlydefined/spdx",
"scripts": {
"typecheck": "tsc",
"format": "biome format --write .",
"lint": "biome lint .",
"test": "node --test test.mts --experimental-test-coverage && biome check ."
},
"dependencies": {
"lodash": "4.18.1",
"spdx-expression-parse": "github:clearlydefined/spdx-expression-parse.js#fork",
"spdx-license-ids": "3.0.23",
"spdx-license-list": "6.11.0",
"spdx-satisfies": "github:clearlydefined/spdx-satisfies.js#parse-override"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/lodash": "4.17.24",
"@types/node": "24.12.2",
"@types/spdx-expression-parse": "4.0.0",
"@types/spdx-license-ids": "3.0.0",
"@types/spdx-satisfies": "6.0.0",
"typescript": "6.0.2"
}
}