-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "fuzzy-weather",
"description": "A Node module for retrieving a 'fuzzy' weather forecast (words, not data) powered by Dark Sky",
"private": false,
"version": "0.3.0",
"main": "src/weather.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/specs",
"watchtest": "mocha --watch test/specs",
"watchtestdebug": "DEBUG=fuzzy-weather* mocha --watch test/specs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakerella/fuzzy-weather.git"
},
"author": "Jordan Kasper",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakerella/fuzzy-weather/issues"
},
"homepage": "https://github.com/jakerella/fuzzy-weather#readme",
"dependencies": {
"debug": "^2.2.0",
"least-squares": "0.0.2",
"lodash": "^4.15.0",
"moment": "^2.17.1",
"moment-timezone": "^0.5.11",
"request": "^2.74.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"nock": "^9.0.2"
}
}