package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "has-symbols",
  3. "version": "1.0.0",
  4. "author": {
  5. "name": "Jordan Harband",
  6. "email": "ljharb@gmail.com",
  7. "url": "http://ljharb.codes"
  8. },
  9. "contributors": [
  10. {
  11. "name": "Jordan Harband",
  12. "email": "ljharb@gmail.com",
  13. "url": "http://ljharb.codes"
  14. }
  15. ],
  16. "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.",
  17. "license": "MIT",
  18. "main": "index.js",
  19. "scripts": {
  20. "prepublish": "safe-publish-latest",
  21. "pretest": "npm run --silent lint",
  22. "test": "npm run --silent tests-only",
  23. "posttest": "npm run --silent security",
  24. "tests-only": "npm run --silent test:stock && npm run --silent test:staging && npm run --silent test:shams",
  25. "test:stock": "node test",
  26. "test:staging": "node --harmony --es-staging test",
  27. "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs",
  28. "test:shams:corejs": "node test/shams/core-js.js",
  29. "test:shams:getownpropertysymbols": "node test/shams/get-own-property-symbols.js",
  30. "lint": "eslint *.js",
  31. "security": "nsp check"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/ljharb/has-symbols.git"
  36. },
  37. "keywords": [
  38. "Symbol",
  39. "symbols",
  40. "typeof",
  41. "sham",
  42. "polyfill",
  43. "native",
  44. "core-js",
  45. "ES6"
  46. ],
  47. "dependencies": {},
  48. "devDependencies": {
  49. "tape": "^4.6.0",
  50. "nsp": "^2.6.1",
  51. "safe-publish-latest": "^1.1.0",
  52. "eslint": "^3.5.0",
  53. "@ljharb/eslint-config": "^8.0.0",
  54. "get-own-property-symbols": "^0.9.2",
  55. "core-js": "^2.4.1"
  56. },
  57. "testling": {
  58. "files": "test/index.js",
  59. "browsers": [
  60. "iexplore/6.0..latest",
  61. "firefox/3.0..6.0",
  62. "firefox/15.0..latest",
  63. "firefox/nightly",
  64. "chrome/4.0..10.0",
  65. "chrome/20.0..latest",
  66. "chrome/canary",
  67. "opera/10.0..latest",
  68. "opera/next",
  69. "safari/4.0..latest",
  70. "ipad/6.0..latest",
  71. "iphone/6.0..latest",
  72. "android-browser/4.2"
  73. ]
  74. },
  75. "engines": {
  76. "node": ">= 0.4"
  77. }
  78. }