forked from evanshortiss/yr.no-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "yr.no-interface",
"version": "1.0.0",
"description": "HTTP wrapper for the yr.no/api.met.no API with support for streams",
"scripts": {
"test": "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"
},
"keywords": [
"yr.no",
"api",
"met",
"weather",
"Meteorologisk",
"NRK",
"yr",
"no",
"met.no",
"api.met.no",
"forecast"
],
"dependencies": {
"debug": "~2.6.5",
"request": "~2.25.0",
"verror": "~1.9.0"
},
"devDependencies": {
"bluebird": "~3.5.0",
"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",
"sinon": "~2.1.0"
},
"author": "Evan Shortiss",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/evanshortiss/yr.no-interface.git"
},
"engines": {
"node": ">=4.4.2"
},
"bugs": {
"url": "https://github.com/evanshortiss/yr.no-interface/issues"
},
"homepage": "https://github.com/evanshortiss/yr.no-interface#readme",
"directories": {
"example": "examples",
"test": "test"
},
"license": "MIT"
}