package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "string.prototype.padend",
  3. "version": "3.0.0",
  4. "author": "Jordan Harband",
  5. "description": "ES7 spec-compliant String.prototype.padEnd shim.",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "scripts": {
  9. "test": "npm run lint && npm run tests-only && npm run security",
  10. "tests-only": "es-shim-api --bound && npm run test:shimmed && npm run test:module",
  11. "test:shimmed": "node test/shimmed.js",
  12. "test:module": "node test/index.js",
  13. "coverage": "covert test/*.js",
  14. "coverage-quiet": "covert test/*.js --quiet",
  15. "lint": "npm run jscs && npm run eslint",
  16. "eslint": "eslint test/*.js *.js",
  17. "jscs": "jscs test/*.js *.js",
  18. "security": "nsp check"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/es-shims/String.prototype.padEnd.git"
  23. },
  24. "keywords": [
  25. "String.prototype.padRight",
  26. "String.prototype.padEnd",
  27. "string",
  28. "ES7",
  29. "shim",
  30. "trim",
  31. "padLeft",
  32. "padRight",
  33. "padStart",
  34. "padEnd",
  35. "polyfill",
  36. "es-shim API"
  37. ],
  38. "dependencies": {
  39. "define-properties": "^1.1.2",
  40. "es-abstract": "^1.4.3",
  41. "function-bind": "^1.0.2"
  42. },
  43. "devDependencies": {
  44. "tape": "^4.2.2",
  45. "covert": "^1.1.0",
  46. "jscs": "^2.5.1",
  47. "nsp": "^2.0.2",
  48. "eslint": "^1.9.0",
  49. "@ljharb/eslint-config": "^1.6.0",
  50. "@es-shims/api": "^1.0.0"
  51. },
  52. "testling": {
  53. "files": "test/index.js",
  54. "browsers": [
  55. "iexplore/9.0..latest",
  56. "firefox/4.0..6.0",
  57. "firefox/15.0..latest",
  58. "firefox/nightly",
  59. "chrome/4.0..10.0",
  60. "chrome/20.0..latest",
  61. "chrome/canary",
  62. "opera/11.6..latest",
  63. "opera/next",
  64. "safari/5.0..latest",
  65. "ipad/6.0..latest",
  66. "iphone/6.0..latest",
  67. "android-browser/4.2"
  68. ]
  69. },
  70. "engines": {
  71. "node": ">= 0.4"
  72. }
  73. }