-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.7 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.7 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
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": "okuhana-hanako",
"version": "0.9.0",
"description": "",
"main": "bot.js",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@types/node-fetch": "^2.5.10",
"@types/node-schedule": "^1.3.1",
"@types/serve-favicon": "^2.5.2",
"discord.js": "^12.5.3",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"ffmpeg-static": "^4.3.0",
"inversify": "^5.1.1",
"minimist": "^1.2.5",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"node-gyp": "^7.1.2",
"node-opus": "^0.3.3",
"node-schedule": "^2.0.0",
"pixiv-api-client": "^0.22.0",
"reflect-metadata": "^0.1.13",
"serve-favicon": "^2.5.0",
"ytdl-core": "^4.8.2"
},
"engines": {
"node": "13.x"
},
"scripts": {
"start": "node ./bin/index.js",
"watch": "tsc -p tsconfig.json -w",
"build": "tsc",
"test": "nyc mocha --require ts-node/register --require source-map-support/register --require reflect-metadata --recursive './src/tests/**/*test.ts'"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/express": "^4.17.12",
"@types/mocha": "^8.2.2",
"@types/morgan": "^1.9.2",
"@types/node": "^14.17.3",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-mockito": "^2.6.1",
"ts-node": "^9.1.1",
"typescript": "^3.9.9"
},
"keywords": [],
"author": "Bernabe Posadas Jr.",
"license": "MIT",
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"src/tests",
"src/static-pages",
"ecosystem.config.js",
"bin"
],
"reporter": [
"lcov",
"json"
],
"all": true
}
}