-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "casbin-postgre-adapter",
"version": "1.0.0",
"description": "PostgreSQL adapter for casbin.",
"main": "lib/adapter.js",
"scripts": {
"lint": "eslint './lib/**/*.{ts, tsx}'",
"test": "jest",
"ci": "npm run lint && npm run test",
"build": "tsc"
},
"keywords": [
"casbin",
"node-casbin",
"postgresql",
"casbin-postgre"
],
"author": "mayursinh",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/pg": "^7.14.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^3.9.1",
"csvtojson": "^2.0.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.8.3"
},
"dependencies": {
"casbin": "^4.1.1",
"pg": "^7.18.2"
},
"files": [
"lib",
"README.md"
]
}