generated from stephenyeargin/template-hubot-script
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "hubot-airnow-gov",
"description": "Retrieve air quality scores for locations in the United States.",
"version": "1.2.0",
"author": "Stephen Yeargin <[email protected]>",
"homepage": "https://github.com/stephenyeargin/hubot-airnow-gov",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts",
"airnow.gov",
"air quality",
"aqi"
],
"repository": {
"type": "git",
"url": "git://github.com/stephenyeargin/hubot-airnow-gov.git"
},
"bugs": {
"url": "https://github.com/stephenyeargin/hubot-airnow-gov/issues"
},
"peerDependencies": {
"hubot": ">=3 || 0.0.0-development"
},
"devDependencies": {
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"hubot-test-helper": "^1.9.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
},
"main": "index.js",
"scripts": {
"test": "script/test",
"prepare": "husky install"
},
"volta": {
"node": "18.19.0"
},
"dependencies": {
"dayjs": "^1.11.9"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"name": "@stephenyeargin/hubot-airnow-gov"
}
}