-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "matrix-puppet-bridge",
"version": "2.0.0",
"description": "Helps you write puppet-style bridges for Matrix",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"prepare": "tsc",
"start": "DEBUG=matrix-puppet:* node dist/index.js",
"test": "mocha -r ts-node/register test/**/*.ts",
"autotest": "mocha -w --watch-extensions ts -r ts-node/register test/**/*.ts",
"gendoc": "jsdoc -r src -P package.json -R README.md -d docs"
},
"keywords": [
"matrix"
],
"contributors": [
"Keyvan Fatehi",
"Andrew Johnson"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/matrix-hacks/matrix-puppet-bridge.git"
},
"dependencies": {
"async-file": "^2.0.2",
"debug": "^2.6.0",
"matrix-appservice-bridge": "^1.4.0a",
"matrix-puppet-bridge": "^2.0.0",
"matrix-puppet-slack": "^1.2.0",
"npm": "^5.3.0",
"read": "^1.0.7",
"typed-promisify": "^0.4.0"
},
"devDependencies": {
"typescript": "^2.3.3",
"@types/node": "^7.0.22"
}
}