UNPKG

eslump

Version:

CLI tool for fuzz testing JavaScript parsers and suchlike programs.

60 lines (59 loc) 1.36 kB
{ "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" } }