-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
64
65
66
67
68
69
70
71
72
{
"name": "ggis-bot",
"version": "1.3.2",
"description": "A Discord chat bot that does things.",
"main": "app.js",
"scripts": {
"start": "node index.js",
"setup": "(yarn install || npm install) && node ./scripts/setup.js",
"generate": "node ./scripts/generate.js",
"clean": "rimraf ./node_modules",
"clean:install": "npm run clean && yarn",
"lint": "eslint .",
"test": "jest",
"test:e2e": "jest --config=\"./test/e2e/jest.config.js\" --runInBand"
},
"author": "Mike A. Louro",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"chalk": "^4.1.0",
"discord.js": "^12.3.1",
"feed-read-parser": "1.0.5",
"imgur2rss": "github:malouro/imgur2rss#patch-1",
"jest": "^26.4.2",
"json-beautify": "^1.1.1",
"lodash.merge": "^4.6.2",
"lyrics-fetcher": "1.0.2",
"mkdirp": "1.0.4",
"moment": "2.29.0",
"rimraf": "^3.0.2",
"twitchps": "^1.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/malouro/ggis-bot"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"babel-jest": "^26.6.3",
"coffee-script": "^1.12.7",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"jest-mock-console": "^1.0.1",
"wait-for-expect": "^3.0.2"
},
"jest": {
"clearMocks": false,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"commands/**/*.js",
"handlers/**/*.js",
"events/**/*.js"
],
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/unit/**/*.test.{j,t}s?(x)"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.js"
],
"watchPathIgnorePatterns": [
"<rootDir>/config/guilds"
],
"transformIgnorePatterns": [
"\\.pnp\\.[^\\/]+$"
],
"transform": {
"\\.coffee$": "<rootDir>/test/coffee-processor.js"
}
}
}