-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "community-graph-cli",
"version": "0.0.1",
"description": "Deploy a Neo4j backed Community graph that pulls in data from Twitter, GitHub, Meetup, and StackOverflow",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./bin/community-graph"
},
"bin": {
"community-graph": "./bin/community-graph"
},
"repository": {
"type": "git",
"url": "git+https://github.com/community-graph/community-graph-cli.git"
},
"keywords": [
"Community Graph",
"Neo4j"
],
"author": "Max Andersson",
"license": "MIT",
"bugs": {
"url": "https://github.com/community-graph/community-graph-cli/issues"
},
"homepage": "https://github.com/community-graph/community-graph-cli#readme",
"dependencies": {
"async": "^2.4.0",
"chalk": "^1.1.3",
"command-line-commands": "^2.0.1",
"commander": "^2.11.0",
"follow-redirects": "^1.2.3",
"minimist": "^1.2.0",
"opn": "^5.0.0",
"prompt": "^1.0.0",
"serverless": "^2.35.0",
"serverless-python-requirements": "^5.1.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"serverless-offline": "^6.9.0"
}
}