This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.51 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
{
"name": "objection-authorize",
"version": "5.0.2",
"description": "isomorphic, \"magical\" access control integrated with objection.js 🎉",
"main": "src/index.js",
"repository": "JaneJeon/objection-authorize",
"author": "Jane Jeon <[email protected]>",
"license": "LGPL-3.0",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint ."
},
"dependencies": {
"http-errors": "^2.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@casl/ability": "^6.0.0",
"@janejeon/eslint-config": "^2.2.0",
"@janejeon/prettier-config": "^1.1.0",
"dotenv": "^16.0.0",
"husky": "^4.2.0",
"jest": "^28.0.0",
"jest-junit": "^14.0.0",
"knex": "^2.0.0",
"lint-staged": "13.0.3",
"node-notifier": "^10.0.0",
"npm-run-all": "^4.1.5",
"objection": "^3",
"objection-table-name": "^2.0.0",
"pg": "^8.7.1",
"skip-ci": "^1.0.4"
},
"peerDependencies": {
"objection": "^3"
},
"prettier": "@janejeon/prettier-config",
"keywords": [
"objection",
"objection.js",
"knex",
"plugin",
"authorization",
"auth",
"authz",
"casl",
"sql",
"casl sql",
"role-acl",
"access",
"control",
"list",
"rbac",
"abac",
"ibac",
"cancan",
"role",
"roles",
"permission",
"permissions",
"attribute",
"attributes",
"acl",
"security",
"resource",
"express"
]
}