octo-deno/package.json

55 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "octo",
"version": "1.0.0",
"description": "",
2018-03-19 04:54:40 +00:00
"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 <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": "webpack -p",
"watch": "webpack --watch",
2018-02-06 00:46:22 +00:00
"postinstall": "npm run build",
"precommit": "npm run test:lint"
},
"standard": {
"ignore": [
"tests/**",
2018-03-19 04:54:40 +00:00
"dist/"
],
"envs": [
"browser"
]
},
"devDependencies": {
"cross-env": "^5.1.3",
"grunt": "*",
"grunt-karma": "*",
"grunt-karma-coveralls": "*",
"grunt-standard": "*",
"husky": "^0.14.3",
"jshint": "^2.9.5",
"jshint-loader": "^0.8.4",
"karma": "*",
"karma-chrome-launcher": "*",
"karma-coverage": "*",
"karma-firefox-launcher": "*",
"karma-qunit": "*",
2017-04-25 22:37:49 +00:00
"qunitjs": "*",
"standard": "*",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
2017-04-25 22:40:45 +00:00
}
}