-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.56 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": "mongodb-pagination",
"version": "1.3.0",
"description": "an advance Node.js library to handle pagination of MongoDb Native Driver",
"main": "index.js",
"scripts": {
"test": "jest -- tests",
"commit": "git-cz",
"acp": "git add . && npm run commit && git push",
"prettier": "npx prettier libs --check",
"prettier:fix": "npm run prettier -- \"libs/**/*\" --write",
"release": "standard-version",
"release-minor": "npm run release -- --release-as minor",
"release-patch": "npm run release -- --release-as patch",
"semantic-release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "https://github.com/mrbontor/mongo-pagination.git"
},
"keywords": [
"mongo",
"mongodb",
"pagination",
"mongodb native driver",
"agregate",
"agregation",
"datatable",
"table"
],
"author": "Tobok Sitanggang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrbontor/mongo-pagination/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mrbontor/mongo-pagination#readme",
"engines": {
"node": ">=14"
},
"devDependencies": {
"chai": "^4.3.7",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"semantic-release": "^20.1.0",
"sinon": "^15.0.1",
"standard-version": "^9.5.0"
},
"dependencies": {},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}