-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "irc-xdcc-2",
"version": "1.0.18",
"description": "irc-xdcc-2 is a node-irc promises based extension providing xdcc handlers.",
"keywords:": [
"irc",
"dcc",
"xdcc",
"bot",
"download",
"iroffer",
"dinoex",
"fserver",
"fileserver"
],
"main": "./dist/esm5/index.js",
"module": "./dist/esm5/index.js",
"es2015": "./dist/esm2015/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"cleanup": "shx rm -rf dist && shx rm -rf doc",
"postversion": "node tools/update-in-app-version",
"prebuild": "npm run cleanup",
"prepare": "npm run build",
"build": "tsc && tsc --target es2019 --outDir dist/esm2015 && npm run doc",
"tsc": "tsc",
"doc": "typedoc --options ./typedoc.json src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/Booster2ooo/irc-xdcc-2.git"
},
"author": "Booster2ooo",
"license": "ISC",
"bugs": {
"url": "https://github.com/Booster2ooo/irc-xdcc-2/issues"
},
"homepage": "https://github.com/Booster2ooo/irc-xdcc-2#readme",
"dependencies": {
"irc": "^0.5.2"
},
"devDependencies": {
"@types/node": "^12.7.1",
"shx": "^0.3.2",
"typescript": "^3.5.3"
}
}