forked from UTS-eResearch/ro-crate-html-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.95 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
62
63
64
{
"name": "ro-crate-html",
"version": "0.1.4",
"description": "Research Object Crate (RO-Crate) utilities for rendering a html representation",
"main": "index.js",
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch",
"build:browserify": "browserify lib/entry.js -o dist/ro-crate-dynamic.js",
"build:dev": "webpack ./lib/entry.js --output-filename ro-crate-dynamic.js --mode development --no-optimization-minimize",
"build:prod": "webpack ./lib/entry.js --output-filename ro-crate-dynamic.min.js --mode production",
"build": "npm run build:dev && npm run build:prod",
"start": "http-server ./dist"
},
"bin": {
"rochtml": "roc-html.js",
"metacrate": "meta-crate.js",
"rocstatic": "roc-site.js",
"rocsite": "roc-site.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Arkisto-Platform/ro-crate-html-js.git"
},
"keywords": [
"RO-Crate"
],
"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": "^4.0.1",
"commonmark": "^0.29.1",
"ejs": "^3.1.10",
"geojson": "^0.5.0",
"jquery": "^3.5.1",
"pairtree": "0.0.1",
"ro-crate": "^3.3.9"
},
"devDependencies": {
"assert": "^2.0.0",
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"http-server": "^14.1.1",
"mocha": "^10.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"files": [
"assets",
"defaults",
"dist",
"lib",
"index.js",
"meta-crate.js",
"roc-html.js",
"roc-schema.js",
"roc-site.js"
]
}