-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "@cedar-policy/cedar-authorization",
"version": "0.2.0",
"description": "JS/TS tools for authorization with the Cedar language",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run --pool=forks",
"test:watch": "vitest",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cedar-policy/cedar-authorization.git"
},
"keywords": [
"expressjs",
"cedar",
"authorization"
],
"author": "swolebrain",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cedar-policy/cedar-authorization/issues"
},
"homepage": "https://github.com/cedar-policy/express-authorization#readme",
"dependencies": {
"@cedar-policy/cedar-wasm": "^4.9.1",
"lodash": "^4.17.21",
"vite": "^8.0.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/lodash": "^4.17.17",
"@types/node": "^20.11.24",
"@types/yargs": "^17.0.32",
"fast-check": "^4.1.1",
"openapi-types": "^12.1.3",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"bin": "./dist/bin.js"
}