-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
64
{
"name": "mx-puppet-bridge",
"version": "0.1.6",
"description": "Matrix Puppeting Bridge library",
"repository": {
"type": "git",
"url": "git+https://github.com/Sorunome/mx-puppet-bridge"
},
"bugs": {
"url": "https://github.com/Sorunome/mx-puppet-bridge/issues"
},
"main": "./lib/src/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"lint": "tslint --project ./tsconfig.json -t stylish",
"build": "tsc",
"test": "npm run-script build && mocha",
"coverage": "npm run-script build && nyc mocha",
"docs": "typedoc --options ./typedoc.json --tsconfig ./tsconfig.json"
},
"author": "Sorunome",
"dependencies": {
"@sorunome/matrix-bot-sdk": "^0.5.13",
"better-sqlite3": "^7.4.1",
"blurhash": "^1.1.3",
"canvas": "^2.6.1",
"escape-html": "^1.0.3",
"events": "^3.1.0",
"expire-set": "^1.0.0",
"file-type": "^12.4.2",
"got": "^11.6.0",
"hasha": "^5.2.0",
"js-yaml": "^3.13.1",
"markdown-it": "^9.1.0",
"pg-promise": "^10.5.0",
"prom-client": "^13.0.0",
"unescape": "^1.0.1",
"uuid": "^3.4.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.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": "^7.1.1",
"nyc": "^15.0.0",
"proxyquire": "^2.1.3",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typedoc": "^0.16.11",
"typescript": "^3.8.3",
"why-is-node-running": "^2.1.2"
},
"files": [
"src/*",
"lib/src/*"
]
}