-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "hub-crawl",
"version": "2.2.2",
"description": "Hub Crawl finds broken links in GitHub repos and wikis.",
"main": "dist/index.js",
"scripts": {
"build": "mkdir -p dist && babel src --out-dir dist --extensions .js",
"start": "npm run build && node --harmony ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/louisscruz/hub-crawl.git"
},
"homepage": "https://github.com/louisscruz/hub-crawl",
"bin": {
"hub-crawl": "./dist/index.js"
},
"author": "louisscruz",
"license": "MIT",
"dependencies": {
"cli-table": "^0.3.1",
"commander": "^2.9.0",
"nightmare": "^2.9.1",
"nightmare-download-manager": "^0.2.4",
"readline-sync": "^1.4.6",
"webpack": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0"
}
}