-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
74 lines (74 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "yr.no-forecast",
"version": "2.1.0",
"description": "retrieve a weather forecast for a given time and location from met.no",
"main": "./index.js",
"scripts": {
"test": "date && npm run lint && npm run unit && npm run coverage",
"lint": "npm run eslint && npm run linelint",
"eslint": "eslint index.js test/*.js",
"linelint": "linelint -l 120 index.js test/*.js",
"unit": "NODE_PATH=. mocha test/",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls",
"coverage": "NODE_PATH=. nyc mocha test/ && nyc report --reporter=lcov",
"example": "node example/dublin-weather.js",
"benchmark": "node benchmark/index.js"
},
"files": [
"index.js"
],
"dependencies": {
"bluebird": "~3.5.0",
"debug": "~2.6.3",
"lodash.filter": "~4.6.0",
"lodash.find": "~4.6.0",
"lodash.foreach": "~4.5.0",
"moment": "~2.22.0",
"pixl-xml": "~1.0.10",
"verror": "~1.9.0",
"yr.no-interface": "~1.2.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/evanshortiss/yr.no-forecast.git"
},
"keywords": [
"yr.no",
"api",
"met",
"weather",
"Meteorologisk",
"NRK",
"yr",
"no",
"met.no",
"api.met.no",
"forecast"
],
"engines": {
"node": ">=4.4.2"
},
"author": "Evan Shortiss",
"devDependencies": {
"benchmark": "~2.1.4",
"chai": "~3.5.0",
"chai-truthy": "~1.0.0",
"coveralls": "~2.13.0",
"eslint": "~3.19.0",
"linelint": "~1.0.1",
"mocha": "~3.2.0",
"nyc": "~10.2.0",
"proxyquire": "~1.7.11",
"require-uncached": "~1.0.3",
"sinon": "~2.1.0"
},
"bugs": {
"url": "https://github.com/evanshortiss/yr.no-forecast/issues"
},
"homepage": "https://github.com/evanshortiss/yr.no-forecast#readme",
"directories": {
"example": "example",
"test": "test"
}
}