You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

x-package.json5 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. name: "source-map-url",
  3. version: "0.4.0",
  4. author: "Simon Lydell",
  5. license: "MIT",
  6. description: "Tools for working with sourceMappingURL comments.",
  7. keywords: [
  8. "source map",
  9. "sourceMappingURL",
  10. "comment",
  11. "annotation"
  12. ],
  13. main: "source-map-url.js",
  14. overlay: {
  15. npm: {
  16. repository: "lydell/source-map-url",
  17. scripts: {
  18. lint: "jshint source-map-url.js test/ ",
  19. unit: "mocha",
  20. test: "npm run lint && npm run unit"
  21. },
  22. devDependencies: {
  23. "mocha": "~1.17.1",
  24. "expect.js": "~0.3.1",
  25. "jshint": "~2.4.3"
  26. },
  27. testling: {
  28. harness: "mocha",
  29. files: "test/*.js",
  30. browsers: [
  31. "ie/8..latest",
  32. "chrome/latest",
  33. "firefox/latest",
  34. "opera/12",
  35. "opera/latest",
  36. "safari/5",
  37. "iphone/6",
  38. "android-browser/4"
  39. ]
  40. }
  41. },
  42. component: {
  43. repo: "lydell/source-map-url",
  44. scripts: [
  45. "source-map-url.js"
  46. ]
  47. },
  48. bower: {
  49. authors: ["Simon Lydell"],
  50. ignore: [
  51. ".*"
  52. ]
  53. }
  54. }
  55. }