This repository was archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "@nodesecure/licenses-conformance",
"version": "2.1.0",
"description": "Check spdx license expressions",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint index.js",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "npm run test-only",
"test-only": "glob -c \"tsx --test\" \"./test/**/*.test.ts\"",
"coverage": "c8 -r html npm run test-only",
"spdx:refresh": "node ./scripts/fetchSpdxLicenses.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/licenses-conformance.git"
},
"files": [
"dist"
],
"keywords": [
"spdx",
"licenses"
],
"author": "NodeSecure",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/licenses-conformance/issues"
},
"homepage": "https://github.com/NodeSecure/licenses-conformance#readme",
"dependencies": {
"@openally/result": "^1.2.1",
"fastest-levenshtein": "^1.0.16",
"spdx-expression-parse": "^4.0.0"
},
"devDependencies": {
"@myunisoft/httpie": "^5.0.0",
"@nodesecure/eslint-config": "^1.9.0",
"@types/node": "^20.14.9",
"@types/spdx-expression-parse": "^3.0.5",
"astring": "^1.8.6",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"glob": "^10.4.2",
"node-estree": "^4.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20"
}
}