forked from matrix-org/matrix-appservice-irc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "matrix-appservice-irc",
"version": "0.7.1",
"description": "An IRC Bridge for Matrix",
"main": "app.js",
"bin": "./bin/matrix-appservice-irc",
"engines": {
"node": ">=4.5"
},
"scripts": {
"test": "BLUEBIRD_DEBUG=1 jasmine --stop-on-failure=true",
"lint": "eslint --max-warnings 0 lib spec",
"check": "npm test && npm run lint",
"ci-test": "BLUEBIRD_DEBUG=1 istanbul cover -x \"**/spec/**\" --report text jasmine",
"ci": "npm run lint && npm run ci-test"
},
"repository": {
"type": "git",
"url": "https://github.com/matrix-org/matrix-appservice-irc.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-org/matrix-appservice-irc/issues"
},
"dependencies": {
"bluebird": "^3.1.1",
"crc": "^3.2.1",
"extend": "^2.0.0",
"irc": "matrix-org/node-irc#aabb2740c0eb47eb42a05947536330e1fb513a0e",
"jayschema": "^0.3.1",
"js-yaml": "^3.2.7",
"matrix-appservice-bridge": "1.3.6",
"nedb": "^1.1.2",
"nopt": "^3.0.1",
"request": "^2.54.0",
"sanitize-html": "^1.6.1",
"winston": "^0.9.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"istanbul": "^0.3.17",
"jasmine": "^2.5.2",
"proxyquire": "^1.4.0"
}
}