-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "pronto",
"version": "4.2.2",
"description": "A Discord bot developed for the City of Auckland Cadet Unit.",
"main": "pronto.js",
"scripts": {
"tsc": "tsc -p build/",
"doc": "RD /S /Q \"docs\" && jsdoc -c build/jsdoc.json",
"prettier": "npx pretty-quick --pattern \"docs/**/*.html\"",
"release": "standard-version --sign",
"start": "node src/pronto.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesNZL/Pronto.git"
},
"author": "James Bao",
"license": "ISC",
"bugs": {
"url": "https://github.com/JamesNZL/Pronto/issues"
},
"homepage": "https://github.com/JamesNZL/Pronto#readme",
"dependencies": {
"chrono-node": "^2.3.5",
"dateformat": "^4.6.3",
"discord.js": "^13.5.1",
"dotenv": "^10.0.0",
"mongoose": "^6.12.0",
"node-cron": "^3.0.0"
},
"devDependencies": {
"husky": "^7.0.4",
"jsdoc": "^3.6.7",
"pretty-quick": "^3.1.3",
"standard-version": "^9.3.2",
"tidy-jsdoc": "github:JamesNZL/tidy-jsdoc",
"typescript": "^4.5.2"
},
"prettier": {
"endOfLine": "crlf",
"embeddedLanguageFormatting": "off",
"printWidth": 300
},
"standard-version": {
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "package-lock.json",
"type": "json"
},
{
"filename": "src/pronto.js",
"updater": "build/standard-version-updater.js"
},
{
"filename": "README.md",
"updater": "build/standard-version-updater.js"
}
]
}
}