-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "hubot-typetalk",
"version": "1.0.3",
"description": "A hubot adapter for typetalk",
"main": "./lib/typetalk",
"scripts": {
"lint": "eslint ./lib ./test",
"test": "mocha ./test/*.test.js",
"coverage": "nyc mocha ./test/*.test.js",
"report-coverage": "nyc --reporter lcov mocha ./test/*.test.js && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/nulab/hubot-typetalk.git"
},
"bugs": {
"url": "https://github.com/nulab/hubot-typetalk/issues"
},
"keywords": [
"hubot",
"typetalk"
],
"author": {
"name": "Nulab Developers",
"email": "[email protected]",
"url": "https://developer.nulab.com"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"request": "^2.88.0",
"underscore": "^1.13.6",
"ws": "^8.11.0"
},
"peerDependencies": {
"hubot": ">=3.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.1.0",
"mocha-lcov-reporter": "1.3.0",
"mockery": "^2.1.0",
"nock": "^13.2.9",
"nyc": "^15.1.0"
}
}