forked from node-casbin/prisma-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
{
"name": "casbin-prisma-adapter",
"version": "1.1.2",
"description": "Prisma adapter for Casbin",
"main": "lib/adapter.js",
"typings": "lib/adapter.d.ts",
"scripts": {
"build": "rimraf lib && tsc",
"lint": "eslint --ext .ts src/ test/",
"format": "npm run format:check -- --write",
"format:check": "prettier --check \"**/*.{md,json}\" \"{src,test}/**/*.ts\"",
"test": "jest --forceExit"
},
"devDependencies": {
"@prisma/client": "^3.4.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"casbin": "^5.0.4",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"prisma": "^3.4.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@prisma/client": "^3.4.0",
"casbin": "^5.0.4",
"prisma": "^3.4.0"
},
"files": [
"lib",
"test",
"examples",
"prisma"
],
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/*.+(ts|tsx)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}