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.

package.json 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "text-decoding",
  3. "version": "1.0.0",
  4. "description": "[fork] TextEncoder and TextDecoder (Polyfill for the Encoding Living Standard's API) For Node.JS.",
  5. "main": "build/index.js",
  6. "module": "src/index.js",
  7. "scripts": {
  8. "t": "zoroaster -a",
  9. "test": "yarn t test/spec test/mask",
  10. "spec": "yarn t test/spec",
  11. "mask": "yarn t test/mask",
  12. "test-build": "ALAMODE_ENV=test-build yarn test",
  13. "lint": "eslint .",
  14. "doc": "NODE_DEBUG=doc doc -o README.md",
  15. "b": "alamode src -o build -s",
  16. "d": "yarn-s d1 externs",
  17. "d1": "typal types/index.js src -c -t types/index.xml",
  18. "externs": "typal types/externs.js",
  19. "build": "yarn-s d b doc",
  20. "e": "alanode"
  21. },
  22. "files": [
  23. "build",
  24. "src",
  25. "types/externs.js"
  26. ],
  27. "externs": "types/externs.js",
  28. "repository": {
  29. "type": "git",
  30. "url": "git://github.com/idiocc/text-decoding.git"
  31. },
  32. "keywords": [
  33. "text-encoding",
  34. "encoding",
  35. "text-decoding",
  36. "TextEncoder",
  37. "TextDecoder",
  38. "decoding",
  39. "ascii",
  40. "windows-1252",
  41. "big5",
  42. "euc-jp",
  43. "euc-kr",
  44. "gb18030",
  45. "iso-20220jp",
  46. "shift-jis",
  47. "single-byte",
  48. "utf8",
  49. "utf16",
  50. "x-user-defined",
  51. "unicode"
  52. ],
  53. "author": "Anton <anton@adc.sh>",
  54. "license": "MIT",
  55. "bugs": {
  56. "url": "https://github.com/idiocc/text-decoding/issues"
  57. },
  58. "homepage": "https://github.com/idiocc/text-decoding#readme",
  59. "devDependencies": {
  60. "alamode": "^2.3.4",
  61. "documentary": "^1.27.4",
  62. "eslint-config-artdeco": "1.0.1",
  63. "yarn-s": "1.1.0",
  64. "zoroaster": "^4.1.1-alpha"
  65. }
  66. }