-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 990 Bytes
/
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
{
"name": "@casbin/hapi-authz",
"version": "1.0.1",
"description": "Basic authorization middleware using casbin",
"main": "build/index.js",
"typings": "build/index.d.ts",
"directories": {
"src": "src",
"test": "test"
},
"files": [
"build",
"examples"
],
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"test": "lab --sourcemaps --transform node_modules/lab-transform-typescript -a @hapi/code"
},
"keywords": [],
"author": "romitkarmakar<[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/hapi-authz.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/hapi": "^19.2.0",
"@hapi/lab": "^24.1.0",
"@types/hapi": "^18.0.3",
"@types/node": "^12.12.31",
"casbin": "^5.1.6",
"lab-transform-typescript": "^3.0.1",
"typescript": "^3.8.3"
},
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
}
}