-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1022 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
35
36
37
38
39
40
41
42
43
{
"name": "hacker-news-api",
"version": "2.0.0",
"description": "Node.js library for Algolia's Hacker News API",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/fraction/node-hacker-news-api.git"
},
"keywords": [
"hacker",
"news",
"hackernews",
"hn",
"ycombinator",
"yc",
"algolia",
"api"
],
"author": "Fraction <us@fraction.io> (http://fraction.io/)",
"contributors": [
"beltex (https://github.com/beltex)",
"Christian Bundy <me@christianbundy.com> (https://github.com/christianbundy)",
"euank <euank@euank.com> (https://github.com/euank)"
],
"license": "Fraction",
"bugs": {
"url": "https://github.com/fraction/node-hacker-news-api/issues"
},
"homepage": "https://github.com/fraction/node-hacker-news-api",
"dependencies": {
"request": "^2.88.0"
},
"devDependencies": {
"chai": "*",
"mocha": "*",
"nock": "*",
"standard": "^14.3.1"
}
}