-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
44
45
46
{
"name": "clattr-bot",
"version": "0.1.0",
"description": "An experimental dice bot for discord.",
"main": "index.js",
"dependencies": {
"discord.js": "^11.4.2",
"handlebars": "^4.1.2",
"mersenne-twister": "^1.1.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.10.0",
"eslint-plugin-json": "^1.3.2",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.2.2"
},
"scripts": {
"lint": "eslint index.js lib/**/* test/**/**",
"test": "npm run lint && nyc --reporter=text mocha --bail -r should -r sinon -r should-sinon --recursive --reporter=spec test/**/*",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"start": "source ./.env && node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nphyx/clattr-bot.git"
},
"keywords": [
"discord",
"dice",
"bot",
"clattr",
"clattr-bot",
"roleplaying",
"chatbot"
],
"author": "Justen Robertson <justen@justen.us>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nphyx/clattr-bot/issues"
},
"homepage": "https://github.com/nphyx/clattr-bot#readme"
}