-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "yahoo-weather",
"version": "2.2.2",
"description": "A simple yahoo weather API wrapper",
"main": "index.js",
"scripts": {
"build": "grunt",
"test": "grunt && mocha --compilers js:babel-core/register test/index.js",
"lint": "eslint src test"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mamal72/node-yahoo-weather.git"
},
"keywords": [
"weather",
"forecast",
"yahoo",
"temperature",
"isomorphic"
],
"author": "Mohamad Jahani <m4m4lj@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mamal72/node-yahoo-weather/issues"
},
"homepage": "https://github.com/mamal72/node-yahoo-weather#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-eslint": "^19.0.0",
"mocha": "^3.0.2"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
}
}