forked from matrix-org/matrix-appservice-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "matrix-appservice-discord",
"version": "0.2.0",
"description": "A bridge between Matrix and Discord",
"main": "discordas.js",
"scripts": {
"test": "npm run-script build && mocha --opts test/mocha.opts build/test",
"lint": "tslint --project ./tsconfig.json --type-check -t stylish",
"coverage": "istanbul --include-all-sources cover -x build/src/discordas.js _mocha -- build/test/ -R spec",
"build": "tsc",
"start": "npm run-script build && node ./build/src/discordas.js -p 9005 -c config.yaml",
"getbotlink": "node ./build/tools/addbot.js",
"adminme": "node ./build/tools/adminme.js",
"usertool": "node ./build/tools/userClientTools.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Half-Shot/matrix-appservice-discord.git"
},
"keywords": [
"matrix",
"discord",
"bridge",
"application-service",
"as"
],
"author": "Half-Shot",
"license": "MIT",
"bugs": {
"url": "https://github.com/Half-Shot/matrix-appservice-discord/issues"
},
"homepage": "https://github.com/Half-Shot/matrix-appservice-discord#readme",
"dependencies": {
"@types/bluebird": "^3.5.20",
"@types/node": "^7.0.55",
"@types/sqlite3": "^3.1.3",
"bluebird": "^3.5.1",
"command-line-args": "^4.0.1",
"command-line-usage": "^4.1.0",
"discord.js": "^11.3.0",
"escape-html": "^1.0.3",
"escape-string-regexp": "^1.0.5",
"js-yaml": "^3.10.0",
"marked": "^0.3.15",
"matrix-appservice-bridge": "^1.4.0",
"mime": "^1.6.0",
"npmlog": "^4.0.2",
"sqlite3": "^4.0.0",
"tslint": "^4.4.2",
"typescript": "2.3.4"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/chai-as-promised": "0.0.29",
"@types/mocha": "^2.2.48",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.8.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"proxyquire": "^1.7.11"
}
}