{ "name": "@mozillasecurity/octo", "version": "1.0.15", "description": "A unified shared library which aids in building fuzzers for browsers or as complement for an existing fuzzing framework.", "keywords": [ "fuzzing", "browser", "javascript", "node", "library" ], "homepage": "https://github.com/mozillasecurity/octo", "repository": { "type": "git", "url": "https://github.com/mozillasecurity/octo.git" }, "bugs": { "url": "https://github.com/mozillasecurity/octo/issues", "email": "cdiehl@mozilla.com" }, "author": "Christoph Diehl ", "license": "MPL-2.0", "scripts": { "test": "jest --silent", "coverage": "cross-env NODE_ENV=test jest --silent --coverage --collectCoverageFrom=lib/**/*.js", "coveralls": "yarn coverage && cat ./coverage/lcov.info | coveralls", "lint": "cross-env NODE_ENV=test standard --verbose", "lint:fix": "cross-env NODE_ENV=test standard --fix --verbose", "docs": "esdoc", "build": "webpack -p", "watch": "webpack --watch", "prepush": "yarn lint", "release": "np" }, "standard": { "ignore": [ "dist/" ], "envs": { "browser": true, "node": true, "es6": true } }, "jest": { "verbose": true }, "esdoc": { "source": "./lib", "destination": "./docs", "plugins": [ { "name": "esdoc-standard-plugin", "option": { "lint": { "enable": true }, "coverage": { "enable": true } } }, { "name": "esdoc-node" } ] }, "devDependencies": { "coveralls": "^3.0.2", "cross-env": "^5.1.4", "esdoc": "^1.1.0", "esdoc-node": "^1.0.3", "esdoc-standard-plugin": "^1.0.0", "husky": "^0.14.3", "jest": "^23.5.0", "np": "^3.0.4", "standard": "^11.0.1", "webpack": "^4.1.1", "webpack-cli": "^3.1.0" }, "dependencies": { "jsesc": "^2.5.1" } }