-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.example
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json.example
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "@nightwatch/plugin-template",
"version": "1.0.0",
"description": "A template plugin for quickly developing a new plugin for the bot.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nightwatch/plugin-template.git"
},
"author": "Tanner Goins",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Nightwatch/plugin-template/issues"
},
"homepage": "https://github.com/Nightwatch/plugin-template#readme",
"devDependencies": {
"@types/node": "^9.6.1",
"@types/winston": "^2.3.9",
"eslint": "^4.19.1",
"prettier": "1.12.1",
"standard": "^11.0.1",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.1"
},
"dependencies": {
"@nightwatch/db": "^0.9.3",
"@nightwatch/util": "^1.0.1",
"axios": "^0.18.0",
"discord.js": "github:discordjs/discord.js#master",
"discord.js-commando": "github:discordjs/Commando#master"
}
}