This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "matrix-discord-parser",
"version": "0.1.9",
"description": "A bridge between Matrix and Discord",
"main": "./lib/src/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"test": "npm run-script build && mocha",
"lint": "tslint --project ./tsconfig.json -t stylish",
"coverage": "tsc && nyc mocha",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matrix-discord/matrix-discord-parser.git"
},
"keywords": [],
"author": "matrix-discord",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-discord/matrix-discord-parser/issues"
},
"homepage": "https://github.com/matrix-discord/matrix-discord-parser#readme",
"dependencies": {
"discord-markdown": "git://github.com/Sorunome/discord-markdown.git#d710d3b1ee189193636e1d37cda281a60f5fc849",
"escape-html": "^1.0.3",
"got": "^11.6.0",
"highlight.js": "^10.4.1",
"node-html-parser": "^1.4.5",
"unescape-html": "^1.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.30",
"@types/sqlite3": "^3.1.6",
"chai": "^4.2.0",
"istanbul": "^0.4.5",
"mocha": "^9.0.1",
"nyc": "^15.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.2",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"why-is-node-running": "^2.1.2"
},
"files": [
"src/*",
"lib/*"
]
}