This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.05 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
73
74
75
76
77
78
79
80
{
"name": "monbot",
"version": "0.1.13",
"description": "A library with simple API for creating your own discord bots.",
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"types": "lib/index.d.ts",
"scripts": {
"dev": "npm run watch",
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest",
"lint": "eslint '{src,example}/**/*.{js,ts}'",
"lint:fix": "eslint '{src,example}/**/*.{js,ts}' --quiet --fix",
"format": "prettier --ignore-path .gitignore --write './**/*.{ts,js,json}'",
"prepare": "install-peers -f"
},
"keywords": [
"discord-bot",
"discordjs"
],
"author": "Sakari Mursu <sakari@mursu.dev> (https://mursu.dev)",
"repository": {
"type": "git",
"url": "https://github.com/mskri/monbot/"
},
"bugs": {
"url": "https://github.com/mskri/monbot/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.14",
"@types/pino": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-jest": "^26.2.2",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"install-peers-cli": "^2.2.0",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.18.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts}": [
"npm run lint",
"pretty-quick --staged"
]
},
"dependencies": {
"pino": "^6.5.0",
"pino-pretty": "^4.1.0"
},
"peerDependencies": {
"discord.js": "12.x"
}
}