-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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
{
"name": "@minddoc/accesscontrol",
"version": "0.0.0",
"description": "Role and Attribute based Access Control",
"author": "MindDoc Health GmbH",
"license": "MIT",
"main": "lib/src/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/src/index.js",
"lib"
],
"types": "lib/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/minddocdev/accesscontrol.git"
},
"keywords": [
"accesscontrol",
"node",
"rbac",
"abac"
],
"scripts": {
"build": "tsc -b -v",
"test": "yarn build && jest --coverage --verbose --no-cache",
"lint": "tslint --project ."
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.3.5"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn build"
}
}
}