package.json 986 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "eslint-plugin-security",
  3. "version": "1.4.0",
  4. "description": "Security rules for eslint",
  5. "main": "index.js",
  6. "scripts": {
  7. "changelog": "changelog eslint-plugin-security all > CHANGELOG.md",
  8. "test": "./node_modules/.bin/mocha test/**/*",
  9. "lint": "./node_modules/.bin/eslint .",
  10. "cont-int": "npm test && npm run-script lint"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/nodesecurity/eslint-plugin-security.git"
  15. },
  16. "keywords": [
  17. "eslint",
  18. "security",
  19. "nodesecurity"
  20. ],
  21. "author": "Node Security Project",
  22. "license": "Apache-2.0",
  23. "bugs": {
  24. "url": "https://github.com/nodesecurity/eslint-plugin-security/issues"
  25. },
  26. "homepage": "https://github.com/nodesecurity/eslint-plugin-security#readme",
  27. "dependencies": {
  28. "safe-regex": "^1.1.0"
  29. },
  30. "devDependencies": {
  31. "changelog": "1.3.0",
  32. "eslint": "^2.10.1",
  33. "eslint-config-nodesecurity": "^1.3.1",
  34. "mocha": "^2.4.5"
  35. }
  36. }