forked from fuzzitdev/jsfuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "jsfuzz",
"version": "1.0.7",
"description": "Coverage Guided Javascript Fuzzer",
"main": "build/src/index.js",
"types": "build/src/inde.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/fuzzitdev/jsfuzz.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^10.0.3",
"@types/yargs": "^13.0.3",
"gts": "^1.1.0",
"typescript": "~3.5.0"
},
"dependencies": {
"@types/escodegen": "^0.0.6",
"@types/esprima": "^4.0.2",
"@types/estraverse": "^0.0.6",
"@types/estree": "^0.0.39",
"escodegen": "^1.12.0",
"esprima": "^4.0.1",
"estraverse": "^4.3.0",
"inversify": "^5.0.1",
"nyc": "^14.1.1",
"pidusage": "^2.0.17",
"reflect-metadata": "^0.1.13",
"yargs": "^14.2.0"
},
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"build": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"bugs": {
"url": "https://github.com/fuzzitdev/jsfuzz/issues"
},
"homepage": "https://github.com/fuzzitdev/jsfuzz#readme",
"directories": {
"example": "examples"
},
"keywords": [
"fuzzing",
"security",
"test",
"fuzzer"
],
"author": "yevgenyp",
"bin": {
"jsfuzz": "./build/src/index.js"
}
}