-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
50
51
52
53
54
55
{
"name": "aclatraz",
"version": "1.0.0",
"description": "Simple dependency-free package for ACL. It can handle hundreds of roles easily.",
"main": "lib/index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "rimraf ./lib && tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"coverage": "jest --coverage",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PoOwAa/aclatraz.git"
},
"files": [
"lib",
"README.md",
"LICENSE.md"
],
"keywords": [
"ACL",
"Grant",
"Permission",
"Role",
"Guard",
"Access Control List"
],
"author": "Raymund Ács <raycsucsu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PoOwAa/aclatraz/issues"
},
"homepage": "https://github.com/PoOwAa/aclatraz#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"np": "^8.0.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}