-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.52 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.52 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
56
57
58
59
60
61
62
63
64
65
{
"name": "drakonis-guard",
"version": "1.0.1",
"description": "Flexible access control system for Node.js applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"start:dev": "ts-node src/index.ts",
"lint": "eslint src/ test/",
"clean": "rm -rf dist node_modules",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"keywords": [
"access-control",
"permissions",
"rbac",
"authorization",
"typescript",
"nestjs",
"express",
"middleware",
"guard"
],
"author": "Abdellah Chehri",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/drakonis-guard.git"
},
"bugs": {
"url": "https://github.com/yourusername/drakonis-guard/issues"
},
"homepage": "https://github.com/yourusername/drakonis-guard#readme",
"files": [
"dist/**/*",
"README.md",
"docs/**/*"
]
}