-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "tropy-omeka",
"productName": "Omeka S",
"version": "2.0.1",
"description": "Export items to Omeka S.",
"icon": "icon.svg",
"main": "index.js",
"scripts": {
"lint": "eslint --color .",
"test": "electron-mocha --renderer test",
"build": "rollup -c rollup.config.js",
"watch": "rollup -c -w rollup.config.js"
},
"author": {
"name": "Center for History and New Media, George Mason University",
"url": "https://chnm.gmu.edu"
},
"repository": "github:tropy/tropy-omeka",
"license": "AGPL-3.0",
"hooks": {
"export": true
},
"options": [
{
"field": "api.url",
"default": "http://<omeka_url>/api",
"hint": "The URL to your Omeka S server",
"label": "Omeka API URL"
},
{
"field": "api.key_identity",
"label": "Identity Key"
},
{
"field": "api.key_credential",
"label": "Credential Key"
},
{
"field": "api.resource_template",
"label": "Resource template ID"
}
],
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"chai": "^4.3.6",
"electron": "^18.2.2",
"electron-mocha": "^11.0.2",
"eslint": "^8.14.0",
"fetch-mock": "^6.0.0",
"jsonld": "^5.2.0",
"node-fetch": "^2.6.1",
"rollup": "^2.72.1",
"rollup-plugin-license": "^2.8.0",
"sinon": "^14.0.0"
}
}