-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "casbin-knex-adapter",
"version": "0.7.2",
"description": "Knex adapter for Casbin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:knex/casbin-knex-adapter.git",
"author": "Jakub Sarnowski <[email protected]>",
"contributors": [
{
"name": "Igor Savin",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"db:start": "docker-compose -f scripts/docker-compose.yml up --build -d mysql postgres mssql && docker-compose -f scripts/docker-compose.yml up waitmssql waitmysql waitpostgres",
"db:stop": "docker-compose -f scripts/docker-compose.yml down",
"lint": "eslint --format codeframe \"lib/**/*.ts\" \"test/**/*.ts\"",
"prettier": "prettier --write \"{lib,test}/**/*.{js,ts}\" index.ts",
"test": "jest --runInBand",
"test:coverage": "jest --config=jest.config.json --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"lodash.chunk": "^4.2.0"
},
"peerDependencies": {
"casbin": ">=2.0.4",
"knex": ">=0.16.5"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"casbin": "5.11.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.2.0",
"knex": "~0.21.21",
"mssql": "^6.3.2",
"mysql": "^2.18.1",
"mysql2": "^2.3.0",
"pg": "^8.7.1",
"prettier": "^2.4.1",
"sqlite3": "^5.0.2",
"tedious": "9.2.3",
"ts-jest": "^27.0.5",
"typescript": "4.4.3"
},
"files": [
"README.md",
"LICENSE",
"dist/*"
]
}