-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 KB
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": "@jadl/cmd",
"version": "0.7.6",
"description": "A command handler for JADL",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"docs": "npm i && typedoc",
"build:ci": "npm i && npm run build",
"build:watch": "tsc -w",
"lint": "eslint ./src",
"prepublishOnly": "npm run build:ci",
"dev": "npm run build:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discord-rose/command-handler.git"
},
"keywords": [
"discord-rose",
"discord",
"discordapp",
"commands"
],
"author": "JPBBerry",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/discord-rose/command-handler/issues"
},
"homepage": "https://github.com/discord-rose/command-handler#readme",
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/node": "^16.11.60",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"discord-api-types": "^0.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"typedoc": "^0.22.3",
"typescript": "^4.3.5"
},
"dependencies": {
"@jadl/builders": "^0.1.3",
"deep-equal": "^2.0.5",
"form-data": "^4.0.0",
"jadl": "^0.2.0"
}
}