forked from paring-chan/dokdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "dokdo",
"version": "0.5.1",
"description": "Dokdo. Easy Discord bot debuging tool.",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"test": "mocha --exit",
"test:bot": "node examples/bot",
"test:shard": "node examples/shard",
"lint": "eslint --ext js,jsx,ts,tsx src",
"lint:fix": "eslint --ext js,jsx,ts,tsx src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wonderlandpark/dokdo.git"
},
"author": {
"name": "wonderlandpark",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wonderlandpark/dokdo/issues"
},
"homepage": "https://github.com/wonderlandpark/dokdo#readme",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-eslint": "^10.1.0",
"discord.js": "^14.0.2",
"eslint": "^7.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.1",
"prettier": "^2.7.1",
"typescript": "^4.1.2"
},
"peerDependencies": {
"discord.js": "^14.0.2"
}
}