-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 2.28 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
{
"name": "casbin-couchdb-adapter",
"version": "0.0.1",
"description": "CouchDB 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": {
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"casbin": "5.23.2",
"coveralls": "^3.1.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^29.5.0",
"lint-staged": "^10.2.9",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"tslint": "^6.1.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"casbin": "5.23.2"
},
"dependencies": {
"nano": "^10.1.2"
},
"files": [
"lib",
"examples"
],
"homepage": "https://casbin.org",
"repository": {
"type": "git",
"url": "https://github.com/node-casbin/couchdb-adapter"
},
"keywords": [
"casbin",
"node-casbin",
"adapter",
"couchdb",
"nano",
"access-control",
"authorization",
"auth",
"authz",
"acl",
"rbac",
"abac"
],
"author": "Node-Casbin",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/node-casbin/couchdb-adapter/issues"
},
"lint-staged": {
"*.{ts}": [
"tslint --fix",
"git add"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|ts)$": "ts-jest"
},
"testMatch": [
"**/test/*.+(ts|tsx)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}