forked from sourcefuse/loopback4-authorization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "loopback4-authorization",
"version": "3.1.0",
"description": "An authorization extension for loopback-next applications",
"keywords": [
"loopback-extension",
"loopback",
"loopback-next",
"authorization",
"authorisation"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "npm run clean && lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run build",
"test": "echo 'No tests'",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"prepublishOnly": "npm run build && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-authorization"
},
"author": "Sourcefuse",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/core": "^2.9.2",
"casbin": "^5.1.5",
"casbin-pg-adapter": "^1.4.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"@loopback/boot": "^2.5.1",
"@loopback/build": "^6.2.2",
"@loopback/context": "^3.10.1",
"@loopback/eslint-config": "^9.0.2",
"@loopback/rest": "^5.2.1",
"@loopback/testlab": "^3.2.1",
"@types/lodash": "^4.14.161",
"@types/node": "^10.17.27",
"eslint": "^7.10.0",
"typescript": "~3.9.7"
}
}