forked from Top-gg-Community/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "@top-gg/sdk",
"version": "3.1.3",
"description": "Official Top.gg Node SDK",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"build:ci": "npm i --also=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 <support@top.gg> (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.2",
"@types/express": "^4.17.11",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"express": "^4.17.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typedoc": "^0.21.0",
"typescript": "^4.4.4"
},
"dependencies": {
"node-fetch": "^2.6.1",
"raw-body": "^2.4.1"
},
"types": "./dist/index.d.ts"
}