package.json 795 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "string_decoder",
  3. "version": "1.1.1",
  4. "description": "The string_decoder module from Node core",
  5. "main": "lib/string_decoder.js",
  6. "dependencies": {
  7. "safe-buffer": "~5.1.0"
  8. },
  9. "devDependencies": {
  10. "babel-polyfill": "^6.23.0",
  11. "core-util-is": "^1.0.2",
  12. "inherits": "^2.0.3",
  13. "tap": "~0.4.8"
  14. },
  15. "scripts": {
  16. "test": "tap test/parallel/*.js && node test/verify-dependencies",
  17. "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/nodejs/string_decoder.git"
  22. },
  23. "homepage": "https://github.com/nodejs/string_decoder",
  24. "keywords": [
  25. "string",
  26. "decoder",
  27. "browser",
  28. "browserify"
  29. ],
  30. "license": "MIT"
  31. }