92 lines
2.1 KiB
JSON
92 lines
2.1 KiB
JSON
{
|
|
"name": "@mozillasecurity/octo",
|
|
"version": "2.0.0",
|
|
"description": "A unified shared library which aids in building fuzzers for browsers or as complement for an existing fuzzing framework.",
|
|
"keywords": [
|
|
"fuzzing",
|
|
"browser",
|
|
"firefox",
|
|
"random",
|
|
"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 <cdiehl@mozilla.com>",
|
|
"license": "MPL-2.0",
|
|
"scripts": {
|
|
"build": "parcel build index.js --out-file=octo.js --no-source-maps",
|
|
"test": "jest --silent",
|
|
"coverage": "cross-env NODE_ENV=test jest --silent --coverage --collectCoverageFrom=lib/**/*.js",
|
|
"coveralls": "yarn coverage && cat ./coverage/lcov.info | coveralls",
|
|
"lint": "standard --verbose",
|
|
"lint:fix": "standard --fix --verbose",
|
|
"docs": "esdoc",
|
|
"pre-commit": "lint-staged",
|
|
"release": "np"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"yarn lint:fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"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.2.0",
|
|
"esdoc": "^1.1.0",
|
|
"esdoc-node": "^1.0.3",
|
|
"esdoc-standard-plugin": "^1.0.0",
|
|
"husky": "^1.0.0-rc.14",
|
|
"jest": "^23.6.0",
|
|
"lint-staged": "^7.2.2",
|
|
"np": "^3.0.4",
|
|
"parcel-bundler": "^1.9.7",
|
|
"standard": "^12.0.1"
|
|
},
|
|
"dependencies": {
|
|
"html-entities": "^1.2.1",
|
|
"jsesc": "^2.5.1"
|
|
}
|
|
}
|