-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.59 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
59
60
61
62
63
64
{
"name": "wiki-challenge",
"version": "1.0.0",
"private": true,
"description": "Wikipedia Challenge - Find the shortest path between two Wikipedia pages.",
"keywords": [
"wikipedia",
"wikipedia challenge",
"bfs",
"shortest path"
],
"repository": {
"type": "git",
"url": "https://github.com/OronNadiv/wikipedia-challenge.git"
},
"homepage": "https://github.com/OronNadiv/wikipedia-challenge",
"bugs": {
"url": "https://github.com/OronNadiv/wikipedia-challenge/issues"
},
"author": {
"name": "Oron Nadiv",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": "^10",
"npm": "^6"
},
"scripts": {
"downloader": "node src/downloader",
"finder": "node src/finder",
"install": "mkdir -p temp ",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"migrate": "bin/migrate",
"processor": "node src/processor"
},
"dependencies": {
"amqplib-easy": "^5.0.0",
"bfs-as-promised": "^1.0.4",
"bluebird": "^3.5.1",
"bookshelf": "^0.13.3",
"debug": "^3.1.0",
"diehard": "^1.5.2",
"fs-promise": "^2.0.3",
"http-as-promised": "^2.0.1",
"knex": "^0.14.6",
"linkscrape": "^1.0.0",
"moment": "^2.22.2",
"node-uuid": "^1.4.8",
"pg": "^7.4.3",
"underscore": "^1.9.1",
"winston": "^2.4.3"
},
"devDependencies": {
"ajv": "^6.5.2",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
}
}