package.json 1011 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "toidentifier",
  3. "description": "Convert a string of words to a JavaScript identifier",
  4. "version": "1.0.0",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  8. "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
  9. ],
  10. "repository": "component/toidentifier",
  11. "devDependencies": {
  12. "eslint": "4.19.1",
  13. "eslint-config-standard": "11.0.0",
  14. "eslint-plugin-import": "2.11.0",
  15. "eslint-plugin-markdown": "1.0.0-beta.6",
  16. "eslint-plugin-node": "6.0.1",
  17. "eslint-plugin-promise": "3.7.0",
  18. "eslint-plugin-standard": "3.1.0",
  19. "mocha": "1.21.5",
  20. "nyc": "11.8.0"
  21. },
  22. "engines": {
  23. "node": ">=0.6"
  24. },
  25. "license": "MIT",
  26. "files": [
  27. "index.js"
  28. ],
  29. "scripts": {
  30. "lint": "eslint --plugin markdown --ext js,md .",
  31. "test": "mocha --reporter spec --bail --check-leaks test/",
  32. "test-cov": "nyc --reporter=html --reporter=text npm test"
  33. }
  34. }