-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "themis-bot",
"version": "0.0.1",
"description": "Simple bot for Discord app",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "mocha",
"test-cov": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls",
"jsdoc": "jsdoc src -r -d docs -R README.md",
"test:debug": "mocha --debug-brk",
"format": "./node_modules/.bin/prettier --write src/**/*.js test/**/*.js",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanSN/Themis-bot.git"
},
"keywords": [
"bot",
"discord",
"node"
],
"author": "Ryan Chatterton (ryanSN)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryanSN/Themis-bot/issues"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.5",
"eslint": "^7.7.0",
"husky": "^3.0.1",
"istanbul": "^0.4.5",
"lint-staged": "^9.0.0",
"mocha": "^6.1.2",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "1.19.0"
},
"dependencies": {
"@discordjs/uws": "^10.149.0",
"commander": "^4.1.1",
"discord.js": "^11.6.4",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"rollbar": "^2.21.1",
"rolldice": "^3.0.0",
"snyk": "^1.522.0"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"snyk": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}