-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
105 lines (105 loc) · 2.38 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "casbin-sequelize-adapter",
"version": "2.2.0",
"description": "Sequelize adapter for Casbin",
"main": "lib/adapter.js",
"typings": "lib/adapter.d.ts",
"scripts": {
"precommit": "lint-staged",
"build": "rimraf lib && tsc",
"lint": "eslint --ext .ts src/ test/",
"test": "jest --forceExit",
"format": "yarn format:check --write",
"format:check": "prettier --check \"{src,test}/**/*.ts\"",
"prepack": "run-s lint build",
"release": "npx -p semantic-release -p @semantic-release/git -p @semantic-release/changelog semantic-release"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.14.37",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"casbin": "<=5.9.0 || >5.9.1",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"mysql2": "^2.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"casbin": "<=5.9.0 || >5.9.1"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"sequelize": "6.29.3",
"sequelize-typescript": "^2.1.6"
},
"files": [
"lib",
"examples"
],
"homepage": "https://casbin.org",
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/sequelize-adapter.git"
},
"keywords": [
"casbin",
"node-casbin",
"adapter",
"sequelize",
"access-control",
"authorization",
"auth",
"authz",
"acl",
"rbac",
"abac",
"orm"
],
"author": "Node-Casbin",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/node-casbin/sequelize-adapter/issues"
},
"lint-staged": {
"*.{ts}": [
"tslint --fix",
"git add"
]
},
"publishConfig": {
"registry": "https://registry.yarnpkg.com"
},
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/*.+(ts|tsx)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}