-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "github-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register tests/index.test.ts",
"docs": "run-s docs:mod docs:gen",
"docs:mod": "node docgen",
"docs:gen": "typedoc",
"lint": "eslint . --ext .ts --max-warnings=0",
"build": "tsc -p tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/collection": "^0.1.6",
"node-fetch": "^3.1.1"
},
"devDependencies": {
"@octokit/types": "^6.18.0",
"@types/chai": "^4.2.21",
"@types/eslint": "^7.28.0",
"@types/mocha": "^8.2.3",
"@types/node": "^15.14.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"jsdoc-json": "^2.0.2",
"mocha": "^9.0.2",
"npm-run-all": "^4.1.5",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.2"
}
}