forked from gustavopch/mongo-cursor-pagination-alt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
{
"name": "mongo-cursor-pagination-alt",
"version": "0.1.0",
"description": "Cursor-based pagination for MongoDB",
"license": "MIT",
"author": "Gustavo P. Cardoso <https://twitter.com/gustavo_pch>",
"repository": "github:gustavopch/mongo-cursor-pagination-alt",
"main": "dist/index.js",
"module": "dist/mongo-cursor-pagination-alt.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdx build --tsconfig ./tsconfig.build.json",
"test": "yarn check --integrity && tsdx lint && tsc --noEmit && tsdx test"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn check --integrity && lint-staged"
}
},
"dependencies": {
"base64-url": "^2.3.3",
"bson": "^4.0.3",
"lodash.get": "^4.4.2",
"lodash.mapvalues": "^4.6.0"
},
"peerDependencies": {
"mongodb": "3.x"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/base64-url": "2.2.0",
"@types/jest": "25.1.4",
"@types/lodash.get": "4.4.6",
"@types/lodash.mapvalues": "4.6.6",
"@types/mongodb": "3.5.2",
"husky": "4.2.3",
"lint-staged": "10.0.9",
"mongodb": "3.5.5",
"mongodb-memory-server": "6.4.1",
"tsc-files": "1.0.0",
"tsdx": "0.13.0",
"tslib": "1.11.1",
"typescript": "3.8.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts}": [
"tsdx lint",
"tsc-files",
"tsdx test --passWithNoTests"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}