-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "sinusbot-command",
"version": "1.0.0",
"description": "Command Library for the SinusBot",
"main": "command.js",
"scripts": {
"test": "jest --runInBand",
"eslint": "eslint command.js",
"generate-docs": "documentation build command.js --project-name \"command.js\" -f html -o docs -c documentation.yml",
"serve-docs": "documentation serve command.js --project-name \"command.js\" -f html -c documentation.yml"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Multivit4min/Sinusbot-Command.git"
},
"keywords": [
"SinusBot"
],
"author": "David Kartnaller",
"license": "MIT",
"bugs": {
"url": "https://github.com/Multivit4min/Sinusbot-Command/issues"
},
"homepage": "https://github.com/Multivit4min/Sinusbot-Command#readme",
"dependencies": {
"@types/node": "^12.12.37",
"sinusbot-scripting-engine": "^1.0.18"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"documentation": "^12.3.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"sinusbot-test-environment": "git+https://github.com/Multivit4min/Sinusbot-Test-Environment.git"
}
}