-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 934 Bytes
/
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
{
"name": "am-i-allowed",
"version": "1.3.0",
"description": "A generic, very powerful yet very friendly, 0 dependencies, agnostic, permissions/access-control/authorization library",
"main": "dist/src/index.js",
"types": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dharmax/am-i-allowed.git"
},
"scripts": {
"prepublish": "npx tsc",
"test": "mocha -require ts-node/register/transpile-only tests/*spec.ts",
"build": "npx tsc"
},
"keywords": ["permissions", "authorization", "privileges", "roles", "access control", "rbac", "abac", "acl", "dac",
"mac"],
"author": "avi tshuva, dharmax",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/mongodb": "^3.5.33",
"@types/node": "^14.14.6",
"ts-node": "^9.0.0",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"typescript": "^4.1.2"
}
}