package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "node-environment-flags",
  3. "version": "1.0.5",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "format": "prettier-eslint --write \"*.js\" \"*.json\" \"test/**/*.js\"",
  9. "semantic-release": "semantic-release",
  10. "travis-deploy-once": "travis-deploy-once"
  11. },
  12. "keywords": [],
  13. "author": "Christopher Hiller <boneskull@boneskull.com> (https://boneskull.com/)",
  14. "license": "Apache-2.0",
  15. "devDependencies": {
  16. "eslint": "^5.9.0",
  17. "eslint-config-prettier": "^3.3.0",
  18. "eslint-config-semistandard": "^13.0.0",
  19. "eslint-config-standard": "^12.0.0",
  20. "eslint-plugin-import": "^2.14.0",
  21. "eslint-plugin-node": "^8.0.0",
  22. "eslint-plugin-prettier": "^3.0.0",
  23. "eslint-plugin-promise": "^4.0.1",
  24. "eslint-plugin-standard": "^4.0.0",
  25. "husky": "^1.1.3",
  26. "lint-staged": "^8.0.4",
  27. "mocha": "^5.2.0",
  28. "nyc": "^13.3.0",
  29. "prettier-eslint-cli": "^4.7.1",
  30. "semantic-release": "^15.13.8",
  31. "travis-deploy-once": "^5.0.9",
  32. "unexpected": "^10.39.1"
  33. },
  34. "dependencies": {
  35. "object.getownpropertydescriptors": "^2.0.3",
  36. "semver": "^5.7.0"
  37. },
  38. "files": [
  39. "implementation.js",
  40. "flags.json",
  41. "index.js",
  42. "polyfill.js",
  43. "shim.js"
  44. ],
  45. "lint-staged": {
  46. "*.{js,json}": [
  47. "prettier-eslint --write",
  48. "git add"
  49. ]
  50. },
  51. "husky": {
  52. "hooks": {
  53. "pre-commit": "lint-staged"
  54. }
  55. },
  56. "prettier": {
  57. "singleQuote": true,
  58. "bracketSpacing": false
  59. },
  60. "repository": {
  61. "type": "git",
  62. "url": "https://github.com/boneskull/node-environment-flags.git"
  63. }
  64. }