forked from UTS-eResearch/ro-crate-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (60 loc) · 1.51 KB
/
package.json
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
{
"name": "ro-crate",
"version": "3.4.2",
"description": "Research Object Crate (RO-Crate) utilities for making and consuming crates",
"main": "index.js",
"scripts": {
"test": "mocha",
"build-docs": "typedoc",
"test-node16": "docker run -v `pwd`:`pwd` -w `pwd` node:16-alpine npm test",
"test-node20": "docker run -v `pwd`:`pwd` -w `pwd` node:20-alpine npm test",
"test-node21": "docker run -v `pwd`:`pwd` -w `pwd` node:21-alpine npm test"
},
"bin": {
"roccheck": "roc-checker.js",
"rocval": "roc-validate.js"
},
"repository": {
"type": "git",
"url": "github:Language-Research-Technology/ro-crate-js"
},
"keywords": [
"RO-Crate",
"rocrate",
"research object",
"research object crate",
"metadata",
"jsonld"
],
"author": "UTS eResearch Team",
"contributors": [
"Alvin Sebastian (https://orcid.org/0000-0002-9086-1722)",
"Moises Sacal Bonequi (https://orcid.org/0000-0002-4438-2755)",
"Peter Sefton (https://orcid.org/0000-0002-3545-944X)"
],
"license": "GPL-3.0-or-later",
"dependencies": {
"commander": "^12.0.0",
"cross-fetch": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"assert": "^2.0.0",
"chai": "^4.3.6",
"chai-fs": "^2.0.0",
"lodash": "^4.17.21",
"mocha": "^10.7.0",
"typedoc": "^0.24.8",
"uuid": "^8.3.2"
},
"files": [
"index.js",
"index.mjs",
"roc-checker.js",
"lib"
],
"engines": {
"node": ">=16.11.0"
}
}