-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "discord.js-message-listener",
"version": "3.0.3",
"description": "A simple utility to bind events on discord message.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"dev": "npm run clean && tsc --watch",
"clean": "rimraf lib/*",
"format": "prettier --write src/**/*.{ts,js,json} src/**/__tests__/**/*.{ts,js,json}",
"lint": "eslint -c .eslintrc.js src/**/*.ts src/**/__tests__/**/*.{test,spec}.ts",
"lint-fix": "eslint -c .eslintrc.js src/**/*.ts src/**/__tests__/**/*.{test,spec}.ts --fix",
"test": "jest",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run lint && npm test",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"lint-staged": {
"*.{ts,js,cjs,mjs}": [
"prettier --write",
"eslint -c .eslintrc.js --fix"
]
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ppodds/discord.js-button-embed.git"
},
"keywords": [
"Discord",
"Buttons",
"discordjs",
"discord.js",
"event",
"button-event",
"select-menu-event"
],
"author": "ppodds",
"license": "MIT",
"bugs": {
"url": "https://github.com/ppodds/discord.js-button-embed/issues"
},
"homepage": "https://github.com/ppodds/discord.js-button-embed#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jest": "^27.5.1",
"lint-staged": "^13.0.4",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"tiny-typed-emitter": "^2.1.0"
},
"peerDependencies": {
"discord.js": "^14.0.0"
}
}