forked from daviddias/node-dirbuster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "dirbuster",
"version": "0.4.0",
"description": "dirbuster implementation in Node.js with some extrasauce",
"bin": {
"dirbuster": "bin/cli.js"
},
"main": "src/index.js",
"scripts": {
"codestyle": "./node_modules/.bin/standard --format",
"test": "node ./node_modules/.bin/lab -r tap tests/test.js | ./node_modules/.bin/tap-spec",
"test-cov": "node ./node_modules/.bin/lab -t 90 tests/test.js"
},
"pre-commit": [
"codestyle",
"test"
],
"repository": {
"type": "git",
"url": "[email protected]/diasdavid/node-dirbuster.git"
},
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/node-dirbuster/issues"
},
"homepage": "https://github.com/diasdavid/node-dirbuster",
"dependencies": {
"combined-stream": "0.0.7",
"funil": "0.0.0",
"parallel-transform": "^0.2.2",
"pause-stream": "0.0.11",
"request": "^2.53.0",
"ronin": "^0.3.10"
},
"devDependencies": {
"code": "^1.3.0",
"lab": "^5.5.0",
"nock": "^1.2.0",
"precommit-hook": "^2.0.1",
"standard": "^4.5.2",
"tap-spec": "^2.2.2"
}
}