-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
46 lines (46 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
41
42
43
44
45
46
{
"name": "weather-cli",
"version": "1.0.0",
"description": "Check the weather for your city from your terminal",
"license": "MIT",
"main": "index.js",
"bin": {
"weather": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"start": "node cli.js",
"test": "mocha -t 10000 tests/tests.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec tests/tests.js -t 100000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"index.js",
"cli.js"
],
"preferGlobal": true,
"keywords": [
"cli-app",
"cli",
"weather",
"yahoo",
"forecast"
],
"dependencies": {
"chalk": "~1.1.1",
"lodash": "~4.17.0",
"meow": "~3.7.0",
"request": "~2.79.0",
"update-notifier": "2.1.0",
"yql": "~1.0.2"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.16",
"eslint": "3.15.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"mocha-lcov-reporter": "1.2.0"
}
}