This repository was archived by the owner on Aug 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.06 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.06 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@byters/intern",
"description": "Framework/Library for Stateless and Microserviced Discord Bots powered by BytersProject.",
"version": "0.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"author": {
"name": "Byters",
"url": "https://github.com/BytersProject/"
},
"maintainer": [
{
"email": "yo@quantumlytangled.com",
"name": "QuantumlyTangled",
"url": "https://quantumlytangled.com"
},
{
"name": "Aditya Nath Tripathi",
"url": "https://github.com/AdityaTD",
"email": "adityatripathidelhi@gmail.com"
}
],
"license": "BSD-3-Clause",
"scripts": {
"prepublishOnly": "yarn build",
"lint": "eslint src --ext ts --fix",
"update": "yarn upgrade-interactive --latest",
"docs": "typedoc",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"test": "jest",
"test:coverage": "jest --coverage",
"sversion": "yarn standard-version"
},
"dependencies": {
"@ayanaware/bento": "^1.0.0-rc.10",
"@byters/brokers.js": "^0.5.1",
"@byters/brokers.js-amqp": "^0.2.5",
"@sapphire/utilities": "^1.1.0",
"@spectacles/rest": "^0.8.3",
"discord-api-types": "^0.11.2",
"eris": "^0.14.0",
"ioredis": "^4.19.2",
"lexure": "^0.17.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@jest/types": "^26.6.1",
"@quantumly/eslint-config": "^1.1.0",
"@types/amqplib": "^0.5.16",
"@types/ioredis": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.7",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-circus": "^26.6.1",
"lint-staged": "^10.4.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typedoc-plugin-nojekyll": "^1.0.1",
"typescript": "4.0.5"
},
"engines": {
"node": ">=15.0.1",
"npm": ">=6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"!dist/.tsbuildinfo"
],
"publishConfig": {
"access": "public"
}
}