You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB

  1. {
  2. "name": "encodeurl",
  3. "description": "Encode a URL to a percent-encoded form, excluding already-encoded sequences",
  4. "version": "1.0.2",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  7. ],
  8. "license": "MIT",
  9. "keywords": [
  10. "encode",
  11. "encodeurl",
  12. "url"
  13. ],
  14. "repository": "pillarjs/encodeurl",
  15. "devDependencies": {
  16. "eslint": "3.19.0",
  17. "eslint-config-standard": "10.2.1",
  18. "eslint-plugin-import": "2.8.0",
  19. "eslint-plugin-node": "5.2.1",
  20. "eslint-plugin-promise": "3.6.0",
  21. "eslint-plugin-standard": "3.0.1",
  22. "istanbul": "0.4.5",
  23. "mocha": "2.5.3"
  24. },
  25. "files": [
  26. "LICENSE",
  27. "HISTORY.md",
  28. "README.md",
  29. "index.js"
  30. ],
  31. "engines": {
  32. "node": ">= 0.8"
  33. },
  34. "scripts": {
  35. "lint": "eslint .",
  36. "test": "mocha --reporter spec --bail --check-leaks test/",
  37. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
  38. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
  39. }
  40. }