2017-04-10 17:49:32 +00:00
|
|
|
{
|
2018-03-19 05:34:18 +00:00
|
|
|
"name": "@mozillasecurity/octo",
|
2018-09-18 01:44:07 +00:00
|
|
|
"version": "2.0.0",
|
2018-08-25 05:28:30 +00:00
|
|
|
"description": "A unified shared library which aids in building fuzzers for browsers or as complement for an existing fuzzing framework.",
|
2018-03-19 06:05:35 +00:00
|
|
|
"keywords": [
|
|
|
|
"fuzzing",
|
|
|
|
"browser",
|
2018-09-18 02:03:43 +00:00
|
|
|
"firefox",
|
|
|
|
"random",
|
2018-03-19 06:05:35 +00:00
|
|
|
"javascript",
|
|
|
|
"node",
|
|
|
|
"library"
|
|
|
|
],
|
2018-08-25 05:28:30 +00:00
|
|
|
"homepage": "https://github.com/mozillasecurity/octo",
|
2018-01-22 21:30:40 +00:00
|
|
|
"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": {
|
2018-09-18 02:03:43 +00:00
|
|
|
"build": "parcel build index.js --out-file=octo.js --no-source-maps",
|
2018-08-25 05:28:30 +00:00
|
|
|
"test": "jest --silent",
|
2018-08-25 18:21:40 +00:00
|
|
|
"coverage": "cross-env NODE_ENV=test jest --silent --coverage --collectCoverageFrom=lib/**/*.js",
|
|
|
|
"coveralls": "yarn coverage && cat ./coverage/lcov.info | coveralls",
|
2018-09-18 02:03:43 +00:00
|
|
|
"lint": "standard --verbose",
|
|
|
|
"lint:fix": "standard --fix --verbose",
|
2018-08-25 05:28:30 +00:00
|
|
|
"docs": "esdoc",
|
2018-09-18 02:03:43 +00:00
|
|
|
"pre-commit": "lint-staged",
|
2018-08-20 22:34:36 +00:00
|
|
|
"release": "np"
|
2018-01-22 21:30:40 +00:00
|
|
|
},
|
2018-09-18 02:03:43 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
|
|
|
"yarn lint:fix",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
2018-01-22 21:30:40 +00:00
|
|
|
"standard": {
|
|
|
|
"ignore": [
|
2018-03-19 04:54:40 +00:00
|
|
|
"dist/"
|
2018-01-22 21:30:40 +00:00
|
|
|
],
|
2018-03-19 23:03:55 +00:00
|
|
|
"envs": {
|
|
|
|
"browser": true,
|
|
|
|
"node": true,
|
|
|
|
"es6": true
|
|
|
|
}
|
2018-01-22 21:30:40 +00:00
|
|
|
},
|
2018-08-25 05:28:30 +00:00
|
|
|
"jest": {
|
|
|
|
"verbose": true
|
|
|
|
},
|
|
|
|
"esdoc": {
|
|
|
|
"source": "./lib",
|
|
|
|
"destination": "./docs",
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "esdoc-standard-plugin",
|
|
|
|
"option": {
|
|
|
|
"lint": {
|
|
|
|
"enable": true
|
|
|
|
},
|
|
|
|
"coverage": {
|
|
|
|
"enable": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "esdoc-node"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-04-10 17:49:32 +00:00
|
|
|
"devDependencies": {
|
2018-08-25 18:21:40 +00:00
|
|
|
"coveralls": "^3.0.2",
|
2018-09-18 01:44:07 +00:00
|
|
|
"cross-env": "^5.2.0",
|
2018-08-23 20:29:55 +00:00
|
|
|
"esdoc": "^1.1.0",
|
|
|
|
"esdoc-node": "^1.0.3",
|
|
|
|
"esdoc-standard-plugin": "^1.0.0",
|
2018-09-18 02:03:43 +00:00
|
|
|
"husky": "^1.0.0-rc.14",
|
2018-09-18 01:44:07 +00:00
|
|
|
"jest": "^23.6.0",
|
2018-09-18 02:03:43 +00:00
|
|
|
"lint-staged": "^7.2.2",
|
2018-08-20 22:34:36 +00:00
|
|
|
"np": "^3.0.4",
|
2018-09-18 01:44:07 +00:00
|
|
|
"parcel-bundler": "^1.9.7",
|
|
|
|
"standard": "^12.0.1"
|
2018-03-21 21:36:13 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-08-30 13:56:43 +00:00
|
|
|
"html-entities": "^1.2.1",
|
2018-08-25 05:28:30 +00:00
|
|
|
"jsesc": "^2.5.1"
|
2017-04-25 22:40:45 +00:00
|
|
|
}
|
2017-04-10 17:49:32 +00:00
|
|
|
}
|