-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.7 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
{
"name": "@kathondvla/sri4node-audit-broadcast",
"version": "2.3.10",
"description": "A module for sri4node to register sri-audit-broadcast messages.",
"main": "js/index.js",
"module": "js/index.mjs",
"types": "js/index.d.ts",
"author": "Katholiek Onderwijs Vlaanderen",
"license": "private",
"scripts": {
"test": "docker compose -f test/docker/docker-compose.yml down --remove-orphans --rmi=local && docker compose -f test/docker/docker-compose.yml up --wait postgres && docker compose -f test/docker/docker-compose.yml logs && mocha",
"test:skipintegrationtests": "SKIP_INTEGRATION_TESTS=true mocha",
"prepare": "if [ -d .git ]; then\n git config core.hooksPath ./git-hooks && echo \"git core.hooksPath has been set to: $(git config core.hooksPath)\";\nelse\n echo \"Not setting git core.hooksPath (installed as a dependency)\";\nfi\n"
},
"dependencies": {
"fetch-retry": "^5.0.6",
"node-fetch": "^3.3.2",
"node-fetch-commonjs": "^3.3.2",
"p-map": "^4.0.0",
"p-queue": "^4.0.0",
"recursive-iterator": "^3.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@types/sinon": "^17.0.3",
"await-sleep": "^0.0.1",
"chai": "^5.1.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.19.2",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"sinon": "^17.0.1",
"sri4node": "github:katholiek-onderwijs-vlaanderen/sri4node"
},
"repository": {
"type": "git",
"url": "https://github.com/katholiek-onderwijs-vlaanderen/sri4node-audit-broadcast"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}