-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "skohub-webhook",
"version": "0.0.1",
"description": "Webhook used to trigger vocabulary builds with SkoHub Vocabs",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"test": "jest --forceExit unit int",
"test:unit": "jest --forceExit unit",
"test:int": "jest --forceExit int",
"test:docker": "jest --forceExit docker",
"lint:js": "eslint src --ext .jsx,.js --quiet",
"rebuild-vocabs": "node src/rebuildVocabs.js",
"cleanup-dist:dry": "node src/cleanupVocabs.js --dry",
"cleanup-dist": "node src/cleanupVocabs.js"
},
"repository": {
"type": "git",
"url": "skohub-webhook"
},
"keywords": [
"SKOS",
"SkoHub"
],
"author": "Steffen Rörtgen <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"node-fetch": "^2.6.8",
"uuid": "^9.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.32.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"nock": "^13.3.0",
"prettier": "^2.8.3",
"supertest": "^6.3.3"
}
}