package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "is-symbol",
  3. "version": "1.0.2",
  4. "description": "Determine if a value is an ES6 Symbol or not.",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublish": "safe-publish-latest",
  8. "pretest": "npm run lint",
  9. "tests-only": "node --es-staging --harmony test",
  10. "test": "npm run tests-only",
  11. "posttest": "npm run security",
  12. "coverage": "covert test",
  13. "lint": "npm run jscs && npm run eslint",
  14. "jscs": "jscs *.js */*.js",
  15. "eslint": "eslint *.js */*.js",
  16. "security": "nsp check"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/ljharb/is-symbol.git"
  21. },
  22. "keywords": [
  23. "symbol",
  24. "es6",
  25. "is",
  26. "Symbol"
  27. ],
  28. "author": "Jordan Harband",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/ljharb/is-symbol/issues"
  32. },
  33. "dependencies": {
  34. "has-symbols": "^1.0.0"
  35. },
  36. "devDependencies": {
  37. "@ljharb/eslint-config": "^12.2.1",
  38. "covert": "^1.1.0",
  39. "eslint": "^4.19.1",
  40. "jscs": "^3.0.7",
  41. "nsp": "^3.2.1",
  42. "object-inspect": "^1.6.0",
  43. "safe-publish-latest": "^1.1.2",
  44. "semver": "^5.5.0",
  45. "tape": "^4.9.0"
  46. },
  47. "testling": {
  48. "files": "test/index.js",
  49. "browsers": [
  50. "iexplore/6.0..latest",
  51. "firefox/3.0..6.0",
  52. "firefox/15.0..latest",
  53. "firefox/nightly",
  54. "chrome/4.0..10.0",
  55. "chrome/20.0..latest",
  56. "chrome/canary",
  57. "opera/10.0..latest",
  58. "opera/next",
  59. "safari/4.0..latest",
  60. "ipad/6.0..latest",
  61. "iphone/6.0..latest",
  62. "android-browser/4.2"
  63. ]
  64. },
  65. "engines": {
  66. "node": ">= 0.4"
  67. }
  68. }