package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "stable",
  3. "version": "0.1.8",
  4. "keywords": [
  5. "stable",
  6. "array",
  7. "sort"
  8. ],
  9. "description": "A stable array sort for JavaScript",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/Two-Screen/stable.git"
  13. },
  14. "main": "./stable.js",
  15. "types": "./index.d.ts",
  16. "files": [
  17. "stable.js",
  18. "stable.min.js",
  19. "index.d.ts"
  20. ],
  21. "devDependencies": {
  22. "rollup": "^0.57.1",
  23. "standard": "^11.0.1",
  24. "tape": "^4.6.3",
  25. "uglify-js": "^3.3.21"
  26. },
  27. "scripts": {
  28. "test": "standard src/ && node ./src/test.js",
  29. "prepare": "npm run build && npm run minify",
  30. "build": "rollup -c",
  31. "minify": "uglifyjs --comments \"/^!/\" -c -m -o ./stable.min.js ./stable.js"
  32. },
  33. "testling": {
  34. "files": "./src/test.js",
  35. "browsers": [
  36. "ie6",
  37. "ie7",
  38. "ie8",
  39. "ie9",
  40. "ie10",
  41. "firefox/25",
  42. "chrome/31",
  43. "safari/6.0",
  44. "opera/12.0",
  45. "opera/17.0",
  46. "iphone/6.0",
  47. "android-browser/4.2"
  48. ]
  49. },
  50. "author": "Angry Bytes <info@angrybytes.com>",
  51. "contributors": [
  52. "Domenic Denicola <domenic@domenicdenicola.com>",
  53. "Mattias Buelens <mattias@buelens.com>",
  54. "Stéphan Kochen <stephan@angrybytes.com>",
  55. "Yaffle"
  56. ],
  57. "license": "MIT",
  58. "__npminstall_done": true,
  59. "_from": "stable@0.1.8",
  60. "_resolved": "https://registry.npmmirror.com/stable/-/stable-0.1.8.tgz"
  61. }