-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
{
"name": "@cedar-policy/authorization-for-expressjs",
"version": "0.2.0",
"description": "Middlewares to authorize expressJS applications with Cedar",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integ",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cedar-policy/authorization-for-expressjs.git"
},
"keywords": [
"expressjs",
"cedar",
"authorization"
],
"author": "swolebrain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cedar-policy/authorization-for-expressjs/issues"
},
"homepage": "https://github.com/cedar-policy/authorization-for-expressjs#readme",
"dependencies": {
"@cedar-policy/cedar-authorization": "^0.2.0",
"@cedar-policy/cedar-wasm": "^4.9.1",
"express": "^5.1.0",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.812.0",
"@types/express": "^5.0.1",
"@types/node-fetch": "^2.6.12",
"fast-check": "^4.1.1",
"node-fetch": "^3.3.2",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.31.0"
},
"bin": "./node_modules/@cedar-policy/cedar-authorization/dist/bin.js"
}