-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.33 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": "eslump",
"version": "3.0.0",
"license": "MIT",
"author": "Simon Lydell",
"description": "CLI tool for fuzz testing JavaScript parsers and suchlike programs.",
"keywords": [
"ECMAScript",
"JavaScript",
"es",
"js",
"random",
"fuzz",
"fuzzer",
"esfuzz",
"shift-fuzzer"
],
"main": "src/index.js",
"bin": {
"eslump": "src/cli-runner.js"
},
"files": [
"src"
],
"repository": "lydell/eslump",
"scripts": {
"doctoc": "doctoc README.md",
"test": "eslint . --report-unused-disable-directives && prettier --check . && jest",
"prepublishOnly": "npm test"
},
"dependencies": {
"@babel/code-frame": "^7.12.13",
"mkdirp": "^1.0.4",
"optionator": "^0.9.1",
"random-int": "^2.0.1",
"random-item": "^3.1.0",
"shift-codegen": "^7.0.3",
"shift-fuzzer": "^2.0.0",
"shift-parser": "^7.0.3",
"shift-reducer": "^6.0.0"
},
"devDependencies": {
"@babel/generator": "7.13.9",
"@babel/parser": "7.13.15",
"acorn": "8.1.0",
"doctoc": "2.0.0",
"escodegen": "2.0.0",
"eslint": "7.23.0",
"eslint-plugin-jest": "24.3.4",
"espree": "7.3.1",
"esprima": "4.0.1",
"flow-parser": "0.148.0",
"jest": "26.6.3",
"meriyah": "4.1.5",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"unexpected": "12.0.0"
}
}