generated from treedomtrees/ts-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 872 Bytes
/
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
{
"name": "@treedom/paginated-connection",
"version": "0.2.1",
"description": "Paginated connection utility library",
"main": "./lib/index.js",
"files": [
"lib/**/*",
"package.json",
"README.md"
],
"scripts": {
"test": "tap 'test/**/*.test.ts' -- --ts",
"lint": "eslint src test --cache",
"build": "rm -rf ./lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treedomtrees/paginated-connection"
},
"author": "Davide Arena <[email protected]>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mongodb": "^6.3.0",
"prettier": "^3.2.5",
"tap": "^18.7.0",
"typescript": "^5.3.3"
}
}