-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 889 Bytes
/
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
{
"name": "get-headlines",
"version": "0.1.0",
"description": "Get news headlines from around Canada and the US from your command line",
"main": "./lib/index.js",
"scripts": {
"test": "npm-run-all test:*",
"test:canada": "node ./lib/index.js canada",
"test:usa": "node ./lib/index.js usa",
"test:uk": "node ./lib/index.js uk",
"start": "onchange './lib/*.js' './lib/*.json' -- npm test"
},
"author": "Pippin Lee",
"license": "MIT",
"dependencies": {
"cli-color": "^0.3.2",
"commander": "^2.5.0",
"minimist": "^1.1.0",
"scraperjs": "^0.3.1"
},
"bin": {
"get-headlines": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/pippinlee/news-cli.git"
},
"devDependencies": {
"intercept-stdout": "^0.1.2",
"mocha": "^2.3.3",
"onchange": "^2.0.0",
"should": "^7.1.0"
}
}