-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1.18 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
{
"name": "metadata-server",
"version": "1.0.0",
"description": "A metadata lookup service node using Zotero",
"main": "index.js",
"author": "Patrick Hochstenbach <Patrick.Hochstenbach@UGent.be>",
"license": "MIT",
"scripts": {
"post-data": "curl -X POST -H 'Content-Type: application/ld+json' --data-binary '@data/example.jsonld' http://localhost:3001/inbox/",
"post-fail": "curl -X POST -H 'Content-Type: application/ld+json' --data-binary '@data/example_fail.jsonld' http://localhost:3001/inbox/",
"post-fallback": "curl -X POST -H 'Content-Type: application/ld+json' --data-binary '@data/example_fallback.jsonld' http://localhost:3001/inbox/",
"handle-inbox": "npx ldn-inbox-server handler @inbox -hn @handler/notification_handler/multi.js",
"handle-outbox": "npx ldn-inbox-server handler @outbox -hn @handler/notification_handler/multi.js",
"server": "npx ldn-inbox-server start-server",
"real-clean": "rm -rf inbox/* error/* outbox/* public/result/"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"ldn-inbox-server": "^1.7.2",
"log4js": "^6.9.1",
"md5": "^2.3.0",
"memento-cli": "^1.0.3",
"uuid": "^10.0.0"
}
}