-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "@i-xor/nauth",
"version": "1.1.3",
"author": "JanYork",
"license": "Apache-2.0",
"email": "[email protected]",
"repository": "https://github.com/JanYork/node-auth",
"keywords": [
"auth",
"permission",
"nodejs",
"typescript"
],
"homepage": "paper.nbyte.me",
"description": "NodeJS's permission management framework.",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"test": "tsc && jest",
"test:coverage": "tsc && jest --coverage",
"lint": "eslint src/**/*.ts",
"format": "npx prettier --write src/**/*.ts",
"publish": "npm publish --access public --registry https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.15.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"babel-jest": "^29.7.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"ioredis": "^5.4.1",
"nanoid": "3",
"path-to-regexp": "^8.2.0",
"radash": "^12.1.0",
"rxjs": "^7.8.1",
"uuid": "^11.0.3"
}
}