-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 872 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 872 Bytes
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
{
"name": "node-sunsetwx",
"description": "A wrapper for SunsetWx's Sunburst API, which provides sunset and sunrise quality forecasts.",
"tags": [
"sunsetwx",
"sunset",
"sunrise",
"weather"
],
"version": "0.0.1",
"main": "index.js",
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint && mocha"
},
"author": "Brian Boucheron <brian@boucheron.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/beardicus/node-sunsetwx.git"
},
"bugs": {
"url": "https://github.com/beardicus/node-sunsetwx/issues"
},
"homepage": "https://github.com/beardicus/node-sunsetwx",
"dependencies": {
"extend": "^3.0.0",
"request": "^2.74.0"
},
"devDependencies": {
"mocha": "^3.0.2",
"nock": "^8.0.0",
"snazzy": "^5.0.0",
"standard": "^8.1.0"
}
}