-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "abacl",
"version": "8.0.7",
"description": "Attribute Based Access Control Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test:debug": "jest --watch",
"doc": "typedoc --out docs src/",
"build": "tsc -p ./tsconfig.json",
"check": "npm run lint && npm run format",
"fresh": "npm run check && npm run clean",
"lint": "eslint . '*/**/*.{js,ts}' --quiet --fix",
"format": "prettier --write \"(src|test)/**/*.(ts|js)\"",
"debug": "node -r ts-node/register --inspect src/index.ts",
"clean": "rm -rf ./dist && rm -rf ./docs && npm run doc && npm run test",
"test": "jest && make-coverage-badge --report-path docs/coverage/coverage-summary.json --output-path coverage-badge.svg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vhidvz/abacl.git"
},
"author": "Vahid V. <vhid.vz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vhidvz/abacl/issues"
},
"keywords": [
"abac",
"authorization",
"access-control",
"attribute-based",
"attribute-based-access-control"
],
"homepage": "https://github.com/vhidvz/abacl#readme",
"dependencies": {
"cron-parser": "^4.9.0",
"cron-validator": "^1.3.1",
"is-in-subnet": "^4.0.1",
"notation": "^2.0.0"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"jest": "^29.7.0",
"make-coverage-badge": "1.2.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"typedoc": "0.25.9",
"typescript": "5.3.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"/dist"
]
}