-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "hookcord",
"version": "2.0.1",
"description": "A user-friendly, sleek and fast client used to create and send Discord Webhooks.",
"main": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .eslintignore .",
"test": "nyc --reporter=html --reporter=text mocha --timeout 5000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs": "node docma.js",
"view-docs": "node docma.js; docma serve",
"eslint-fix": "eslint --ignore-path .eslintignore . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxrumsey/hookcord.git"
},
"keywords": [
"Discord",
"API",
"Webhook",
"Hook",
"Ratelimit",
"Discord.JS"
],
"author": "Max Rumsey <max@maxrumsey.xyz> (https://maxrumsey.xyz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxrumsey/hookcord/issues",
"email": "bugs@maxrumsey.xyz"
},
"homepage": "https://maxrumsey.xyz/hookcord/",
"dependencies": {
"snekfetch": "^4.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"docma": "^3.0.0",
"discord.js": "^12.0.0",
"eslint": "^6.0.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-mocha": "^7.0.0",
"log-interceptor": "^1.0.1",
"mocha": "^7.0.1",
"nyc": "^15.0.0"
}
}