-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "hacker-news-reader",
"version": "1.1.2",
"description": "Hacker News Reader CLI",
"main": "lib/",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"lint": "eslint ./src",
"mocha": "mocha --timeout 15000 --compilers js:babel-register --require babel-polyfill",
"test": "npm run lint && npm run mocha"
},
"keywords": [
"hacker-news",
"reader",
"cli"
],
"bin": {
"hnr": "./lib/index.js"
},
"preferGlobal": true,
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"cache-lite": "0.0.3",
"chalk": "^1.1.3",
"open": "0.0.5",
"ora": "^0.2.1",
"request": "^2.72.0",
"vorpal": "^1.10.10"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^6.0.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"eslint-config-airbnb-base": "^1.0.4",
"eslint-plugin-import": "^1.6.0",
"mocha": "^2.4.5"
},
"directories": {
"test": "test"
}
}