-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "bugsy",
"version": "1.0.1",
"description": "yeeeehaaaawwww",
"scripts": {
"build": "tsup",
"dev": "yarn test:bot",
"lint": "eslint --ext js,jsx,ts,tsx src",
"lint:fix": "eslint --ext js,jsx,ts,tsx src --fix",
"test": "yarn build && mocha --exit",
"test:bot": "yarn build && node examples/bot",
"test:shard": "yarn build && node examples/shard",
"update": "yarn upgrade-interactive"
},
"main": "./dist/index.js",
"files": [
"dist/**"
],
"devDependencies": {
"@types/node": "^16.3.1",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^36.0.6",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.1",
"tsup": "^6.3.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=16.9.0"
},
"packageManager": "[email protected]",
"peerDependencies": {
"discord.js": "14"
}
}