-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
{
"name": "@discord-samba/command",
"version": "0.1.0",
"description": "Command module for Discord-Samba",
"main": "bin/index.js",
"imports": {
"#argument/*": "./bin/argument/*.js",
"#resolve/*": "./bin/resolve/*.js",
"#parse/*": "./bin/parse/*.js",
"#error/*": "./bin/error/*.js",
"#type/*": "./bin/types/*.js",
"#root/*": "./bin/*.js"
},
"exports": {
".": "./bin/index.js",
"./rules": "./bin/rules.js"
},
"scripts": {
"prepare": "husky install",
"clean": "rm -rf bin",
"build": "tsc --extendedDiagnostics",
"prebuild": "npm run clean",
"postbuild": "node scripts/postbuild",
"build:vscode": "npm run lint && npm run test && tsc --extendedDiagnostics",
"lint": "eslint . --ext ts,js --ignore-pattern bin",
"test": "jest -c .jestrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discord-samba/command.git"
},
"author": "Zack Campbell",
"license": "MIT",
"bugs": {
"url": "https://github.com/discord-samba/command/issues"
},
"homepage": "https://github.com/discord-samba/command#readme",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-angular": "^12.0.1",
"@discord-samba/eslint-config": "github:discord-samba/eslint-config",
"@discord-samba/typedoc-patch": "github:discord-samba/typedoc-patch",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"discord.js": "^12.5.1",
"eslint": "^7.26.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.1",
"source-map-support": "^0.5.19",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.36",
"typescript": "^4.1.3"
},
"dependencies": {
"glob": "^7.1.7"
},
"peerDependencies": {
"discord.js": "^12.5.1"
}
}