package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "es-to-primitive",
  3. "version": "1.2.0",
  4. "author": "Jordan Harband",
  5. "description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "scripts": {
  9. "pretest": "npm run --silent lint",
  10. "test": "npm run --silent tests-only",
  11. "posttest": "npm run --silent security",
  12. "tests-only": "node --es-staging test",
  13. "coverage": "covert test/*.js",
  14. "coverage-quiet": "covert test/*.js --quiet",
  15. "lint": "npm run --silent jscs && npm run --silent eslint",
  16. "jscs": "jscs test/*.js *.js",
  17. "eslint": "eslint test/*.js *.js",
  18. "security": "nsp check"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git://github.com/ljharb/es-to-primitive.git"
  23. },
  24. "keywords": [
  25. "primitive",
  26. "abstract",
  27. "ecmascript",
  28. "es5",
  29. "es6",
  30. "es2015",
  31. "toPrimitive",
  32. "coerce",
  33. "type",
  34. "object",
  35. "string",
  36. "number",
  37. "boolean",
  38. "symbol",
  39. "null",
  40. "undefined"
  41. ],
  42. "dependencies": {
  43. "is-callable": "^1.1.4",
  44. "is-date-object": "^1.0.1",
  45. "is-symbol": "^1.0.2"
  46. },
  47. "devDependencies": {
  48. "@ljharb/eslint-config": "^13.0.0",
  49. "covert": "^1.1.0",
  50. "eslint": "^5.6.0",
  51. "foreach": "^2.0.5",
  52. "function.prototype.name": "^1.1.0",
  53. "jscs": "^3.0.7",
  54. "nsp": "^3.2.1",
  55. "object-inspect": "^1.6.0",
  56. "object-is": "^1.0.1",
  57. "replace": "^1.0.0",
  58. "semver": "^5.5.1",
  59. "tape": "^4.9.1"
  60. },
  61. "testling": {
  62. "files": "test",
  63. "browsers": [
  64. "iexplore/6.0..latest",
  65. "firefox/3.0..6.0",
  66. "firefox/15.0..latest",
  67. "firefox/nightly",
  68. "chrome/4.0..10.0",
  69. "chrome/20.0..latest",
  70. "chrome/canary",
  71. "opera/10.0..latest",
  72. "opera/next",
  73. "safari/4.0..latest",
  74. "ipad/6.0..latest",
  75. "iphone/6.0..latest",
  76. "android-browser/4.2"
  77. ]
  78. },
  79. "engines": {
  80. "node": ">= 0.4"
  81. }
  82. }