-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 905 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 905 Bytes
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
{
"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",
"keywords": [
"spdx"
],
"bugs": {
"url": "https://github.com/clearlydefined/spdx/issues"
},
"homepage": "https://github.com/clearlydefined/spdx",
"scripts": {
"test": "nyc mocha \"test.js\" && eslint ."
},
"dependencies": {
"lodash": "^4.17.21",
"spdx-expression-parse": "github:clearlydefined/spdx-expression-parse.js#fork",
"spdx-license-ids": "^3.0.21",
"spdx-license-list": "^6.10.0",
"spdx-satisfies": "github:clearlydefined/spdx-satisfies.js#parse-override"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^9.26.0",
"mocha": "^11.7.5",
"nyc": "^14.1.1"
}
}