-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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": "@karthikgangadhar/stack-exchange",
"version": "1.0.0",
"description": "The stack-exchange provides a wrapper to access StackOverflow API endpoints.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "node ./test/test"
},
"repository": {
"type": "git",
"url": "git://github.com/KarthikGangadhar/stack-exchange.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "kgangadhar <[email protected]> (https://github.com/karthikgangadhar)",
"license": "ISC",
"bugs": {
"url": "https://github.com/KarthikGangadhar/stack-exchange/issues"
},
"homepage": "https://github.com/KarthikGangadhar/stack-exchange#readme",
"keywords": [
"stack-exchange",
"stackoverflow",
"users",
"me",
"questions",
"answers",
"badges",
"tags",
"comments",
"posts",
"search",
"suggested_edits",
"network",
"info",
"privileges",
"revisions",
"events"
],
"engines": {
"node": "8.9.1",
"npm": "5.4.2"
}
}