-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.51 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.51 KB
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
{
"name": "@casbin/mongo-changestream-watcher",
"version": "1.3.0",
"description": "Casbin Watcher based on MongoDB Change Streams",
"main": "lib/cjs/watcher.js",
"typings": "lib/cjs/watcher.d.ts",
"module": "lib/esm/watcher.js",
"homepage": "https://github.com/node-casbin/mongo-changestream-watcher",
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-casbin/mongo-changestream-watcher.git"
},
"bugs": {
"url": "https://github.com/node-casbin/mongo-changestream-watcher/issues"
},
"publishConfig": {
"tag": "latest",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"lint": "eslint . --ext .js,.ts",
"fmt": "eslint . --ext .js,.ts --fix",
"prepublishOnly": "npm run lint",
"test": "jest",
"semantic-release": "semantic-release",
"coverage": "jest --coverage",
"postpack": "run-s clean",
"build": "run-s clean && run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf lib",
"prepare": "npm run build && husky"
},
"keywords": [
"casbin",
"node-casbin",
"watcher",
"mongodb"
],
"author": {
"name": "Node-Casbin"
},
"contributors": [
{
"name": "Joakim Järvinen",
"email": "Sefriol@users.noreply.github.com",
"url": "https://github.com/Sefriol"
}
],
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"engines": {
"node": ">=20.19.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"casbin": "^5.40.0",
"casbin-mongoose-adapter": "^5.4.0",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jsdoc-to-markdown": "^9.1.3",
"npm-run-all": "^4.1.5",
"sinon": "^21.0.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"dependencies": {
"mongodb": "^6.20.0"
},
"peerDependencies": {
"casbin": "^5.40.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}