-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.36 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
{
"name": "template-hubot-script",
"description": "Template for a Hubot script package.",
"version": "0.0.0",
"author": "Your Name <name@example.com>",
"homepage": "https://github.com/stephenyeargin/template-hubot-script",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts"
],
"repository": {
"type": "git",
"url": "git://github.com/stephenyeargin/template-hubot-script.git"
},
"bugs": {
"url": "https://github.com/stephenyeargin/template-hubot-script/issues"
},
"peerDependencies": {
"hubot": ">=3 || 0.0.0-development"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-promise": "^6.1.1",
"hubot": "^4",
"hubot-test-helper": "^1.9.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-junit": "^3.6.0",
"nock": "^13.4.0"
},
"main": "index.js",
"scripts": {
"test": "script/test",
"prepare": "husky install"
},
"jest": {
"testPathIgnorePatterns": [
"/helpers/",
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov",
"text",
"clover"
],
"coverageDirectory": "./test-results",
"collectCoverage": true
},
"volta": {
"node": "18.19.0"
}
}