-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@aserto/aserto-node",
"description": "Aserto Node SDK",
"version": "0.32.12",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Aserto",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc --build",
"check": "tsc --noEmit",
"detect-unused-exports": "knip --include exports,types,nsExports,nsTypes",
"dev:checks": "yarn lint --fix && yarn tsc && yarn detect-unused-exports && yarn test",
"format": "prettier --write lib",
"lint": "eslint lib --max-warnings=0",
"prepare": "yarn run build",
"prepack": "NODE_ENV=production yarn build",
"push": "scripts/publish.sh",
"release_prep": "scripts/release_prep.sh",
"release": "scripts/release.sh",
"test": "jest test --coverage --verbose"
},
"files": [
"lib",
"dist"
],
"imports": {
"@lib": "./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aserto-dev/aserto-node.git"
},
"keywords": [
"express",
"topaz",
"jwt",
"authorization",
"aserto",
"authz"
],
"bugs": {
"url": "https://github.com/aserto-dev/aserto-node/issues"
},
"homepage": "https://github.com/aserto-dev/aserto-node#readme",
"dependencies": {
"@aserto/node-authorizer": "^0.20.10",
"@aserto/node-directory": "^0.31.4",
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.6.1",
"@connectrpc/connect-node": "^1.6.1",
"express": "^4.21.1",
"jwt-decode": "^4.0.0"
},
"devDependencies": {
"@aserto/ts-linting-configs": "^2.7.0",
"@babel/core": "^7.25.2",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"jest": "^29.7.0",
"knip": "^5.30.5",
"njwt": "^2.0.1",
"node-mocks-http": "^1.16.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-prune": "^0.10.3",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]"
}