package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "unescape-js",
  3. "version": "1.1.4",
  4. "description": "Unescape JavaScript special characters",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "build": "babel src -d dist",
  8. "pretest": "npm run build",
  9. "test": "ava test/index.js",
  10. "prepublishOnly": "npm test",
  11. "coverage": "nyc --reporter=text-lcov npm test",
  12. "precoverage-coveralls": "nyc npm test",
  13. "coverage-coveralls": "nyc report --reporter=text-lcov | coveralls"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/iamakulov/unescape-js.git"
  18. },
  19. "keywords": [
  20. "unescape",
  21. "escape sequences",
  22. "special characters"
  23. ],
  24. "author": "Ivan Akulov <mail@iamakulov.com> (http://iamakulov.com/)",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/iamakulov/unescape-js/issues"
  28. },
  29. "homepage": "https://github.com/iamakulov/unescape-js#readme",
  30. "devDependencies": {
  31. "@babel/cli": "^7.7.0",
  32. "@babel/core": "^7.7.2",
  33. "@babel/preset-env": "^7.7.1",
  34. "ava": "^2.4.0",
  35. "babel-plugin-add-module-exports": "^1.0.2",
  36. "coveralls": "^3.0.2",
  37. "nyc": "^14.1.1"
  38. },
  39. "dependencies": {
  40. "string.fromcodepoint": "^0.2.1"
  41. }
  42. }