-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "ro-crate-modes",
"version": "1.1.0",
"description": "Repository for RO-Crate modes, for Crate-O and potentially other RO-Crate editors. The initial profiles are simple JSON files which are typically compiled from a Schema.org style schema definition, from example RO-Crate or by hand. Future profiles may include different formats that have features such as built-in validation of crates",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "npx mocha"
},
"author": "University of Queensland",
"license": "GPL-3.0",
"devDependencies": {
"ajv": "^8.12.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"ro-crate": "^3.3.4"
},
"keywords": [
"RO-Crate",
"Crate-O"
],
"bin": {
"ro-crate-modes": "./bin/run.js"
},
"oclif": {
"bin": "ro-crate-modes",
"commands": "./lib/commands",
"dirname": "ro-crate-modes",
"topicSeparator": " "
},
"dependencies": {
"@oclif/core": "^4.0.32"
}
}