Nenhuma descrição

package.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "date-now",
  3. "version": "0.1.4",
  4. "description": "A requirable version of Date.now()",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/Colingo/date-now.git",
  8. "main": "index",
  9. "homepage": "https://github.com/Colingo/date-now",
  10. "contributors": [
  11. {
  12. "name": "Artem Shoobovych"
  13. }
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/Colingo/date-now/issues",
  17. "email": "raynos2@gmail.com"
  18. },
  19. "dependencies": {},
  20. "devDependencies": {
  21. "tape": "~0.2.2",
  22. "browserify": "https://github.com/raynos/node-browserify/tarball/master",
  23. "testem": "~0.2.52"
  24. },
  25. "licenses": [
  26. {
  27. "type": "MIT",
  28. "url": "http://github.com/Colingo/date-now/raw/master/LICENSE"
  29. }
  30. ],
  31. "scripts": {
  32. "test": "node ./test",
  33. "build": "browserify test/index.js -o test/static/bundle.js",
  34. "testem": "testem"
  35. },
  36. "testling": {
  37. "files": "test/*.js",
  38. "browsers": {
  39. "ie": [
  40. "8",
  41. "9",
  42. "10"
  43. ],
  44. "firefox": [
  45. "16",
  46. "17",
  47. "nightly"
  48. ],
  49. "chrome": [
  50. "22",
  51. "23",
  52. "canary"
  53. ],
  54. "opera": [
  55. "12",
  56. "next"
  57. ],
  58. "safari": [
  59. "5.1"
  60. ]
  61. }
  62. }
  63. }