-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "molehill",
"version": "0.2.9",
"description": "Webcrawler for data mining and unification purposes",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./bin/molehill.js",
"locate": "./bin/molehill.js locate",
"locate-collection": "./bin/molehill.js locate-collection",
"list-collection": "./bin/molehill.js list-collection",
"create-collection": "./bin/molehill.js create-collection",
"locate-config": "./bin/molehill.js locate-config",
"list-items": "./bin/molehill.js list-items",
"view-items": "./bin/molehill.js view-items",
"view-item": "./bin/molehill.js view-item",
"locate-item": "./bin/molehill.js locate-item",
"crawl-collection": "./bin/molehill.js crawl-collection",
"gui": "node src/index.js gui",
"server": "node src/index.js server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rnd7/molehill.git"
},
"keywords": [
"crawler",
"datamining",
"searchagent",
"cli",
"webservice",
"productivity"
],
"engines": {
"node": ">0.11.9"
},
"bin": {
"molehill": "bin/molehill.js"
},
"files": [
"settings.json",
"src",
"bin",
"doc"
],
"author": "rnd7",
"license": "GPL-3.0-or-later",
"dependencies": {
"body-parser": "^1.18.3",
"callsite": "^1.0.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"del": "^4.1.0",
"express": "^4.16.4",
"puppeteer": "^1.14.0",
"request": "^2.88.0"
}
}