-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 933 Bytes
/
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
{
"name": "@digipolis/authz",
"version": "1.4.5",
"description": "Authorization module which can be used to check the permissions of an authenticated user.",
"scripts": {
"test": "mocha ./test && npm run lint",
"lint": "eslint \"**/*.js\"",
"start": "echo '----- To start the demo you should be in the example folder. -----'",
"coverage": "c8 --reporter=html --reporter=text --reporter=lcovonly npm test && eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digipolisantwerp/authz_module_nodejs.git"
},
"author": "Olivier Van den Mooter",
"license": "MIT",
"main": "lib/index.js",
"devDependencies": {
"@eslint/js": "^9.17.0",
"c8": "^10.1.3",
"chai": "^4.5.0",
"globals": "^15.14.0",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^11.0.1",
"sinon": "^19.0.2"
},
"dependencies": {
"axios": "^1.7.9",
"node-cache": "^5.1.2"
}
}