-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "@top-gg/sdk",
"version": "3.1.6",
"description": "Official Top.gg Node SDK",
"main": "./dist/index.js",
"scripts": {
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"build": "tsc",
"build:ci": "npm i --include=dev && tsc",
"docs": "typedoc",
"prepublishOnly": "npm run build:ci",
"lint": "eslint src/**/*.ts",
"lint:ci": "eslint --output-file eslint_report.json --format json src/**/*.ts",
"prepare": "npx husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/top-gg/node-sdk.git"
},
"author": "Top.gg <[email protected]> (https://top.gg)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/top-gg/node-sdk/issues"
},
"homepage": "https://topgg.js.org",
"devDependencies": {
"@top-gg/eslint-config": "^0.0.4",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"express": "^4.18.2",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"dependencies": {
"raw-body": "^2.5.2",
"undici": "^5.23.0"
},
"types": "./dist/index.d.ts"
}