62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "octo",
|
|
"version": "0.0.3",
|
|
"description": "",
|
|
"keywords": [
|
|
"fuzzing",
|
|
"browsers"
|
|
],
|
|
"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": {
|
|
"test": "grunt test --verbose",
|
|
"test:lint": "cross-env NODE_ENV=test standard --verbose",
|
|
"test:lint:fix": "cross-env NODE_ENV=test standard --fix --verbose",
|
|
"build": "./build.py -l lib/ -d deploy/",
|
|
"postinstall": "npm run build",
|
|
"precommit": "npm run test:lint"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"tests/**",
|
|
"deploy/"
|
|
],
|
|
"globals": [
|
|
"random",
|
|
"make",
|
|
"utils",
|
|
"logger",
|
|
"MersenneTwister",
|
|
"o",
|
|
"btoa",
|
|
"atob"
|
|
],
|
|
"envs": [
|
|
"browser"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^5.1.3",
|
|
"grunt": "*",
|
|
"grunt-karma": "*",
|
|
"grunt-karma-coveralls": "*",
|
|
"grunt-standard": "*",
|
|
"husky": "^0.14.3",
|
|
"karma": "*",
|
|
"karma-chrome-launcher": "*",
|
|
"karma-coverage": "*",
|
|
"karma-firefox-launcher": "*",
|
|
"karma-qunit": "*",
|
|
"qunitjs": "*",
|
|
"standard": "*"
|
|
}
|
|
}
|