-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "@diaskappassov/casbin-js",
"version": "0.6.0",
"description": "🔐 Simple library that supports access control models like ACL, RBAC, ABAC in Frontend Javascript",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"type": "module",
"files": [
"lib"
],
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"test": "tsx --test $(find src -type f -name '*.test.ts')",
"prepublishOnly": "npm run build",
"example:vanilla": "tsx examples/vanilla.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dias1c/casbin-js.git"
},
"keywords": [
"casbin-core",
"casbin.js",
"casbin",
"enforcer",
"authorizer",
"ACL",
"ABAC",
"RBAC"
],
"author": "Dias Kappassov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dias1c/casbin-js/issues"
},
"homepage": "https://github.com/Dias1c/casbin-js#readme",
"devDependencies": {
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"casbin-core": "^0.0.0-beta.2"
}
}