-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "discorb",
"version": "1.1.0",
"description": "Discord bot scaffolding",
"source": "src/discorb.ts",
"main": "dist/discorb.js",
"umd:main": "dist/discorb.umd.js",
"module": "dist/discorb.m.js",
"esmodule": "dist/discorb.modern.js",
"types": "dist/discorb.d.ts",
"repository": "https://github.com/czycha/discorb",
"author": "James Anthony Bruno <j.bruno.che@gmail.com>",
"license": "Hippocratic-2.1",
"keywords": [
"discord",
"bot"
],
"scripts": {
"build": "microbundle",
"build:docs": "typedoc src",
"lint": "eslint '{src,example}/**/*.{js,ts,tsx}' --quiet --fix",
"prepublishOnly": "yarn build",
"test": "jest",
"watch": "microbundle watch"
},
"peerDependencies": {
"discord.js": "^12.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"discord.js": "^12.5.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^24.0.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"microbundle": "^0.12.4",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typedoc": "^0.19.2",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{js,ts,tsx}": "eslint --fix"
}
}