package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "browser-assert",
  3. "description": "Featherweight assert module",
  4. "version": "1.2.1",
  5. "stability": "stable",
  6. "author": "muji <noop@xpm.io>",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/socialally/browser-assert.git"
  10. },
  11. "main": "lib/assert.js",
  12. "devDependencies": {
  13. "browser-sync": "~2.8.2",
  14. "browserify": "~11.0.1",
  15. "chai": "~3.2.0",
  16. "del": "~1.2.0",
  17. "gulp": "~3.9.0",
  18. "gulp-eslint": "~1.0.0",
  19. "gulp-istanbul-report": "0.0.1",
  20. "gulp-mocha-phantomjs": "~0.8.1",
  21. "gulp-size": "~1.2.1",
  22. "gulp-sourcemaps": "~1.5.2",
  23. "gulp-uglify": "~1.2.0",
  24. "gulp-util": "~3.0.4",
  25. "istanbul": "~0.3.6",
  26. "merge": "~1.2.0",
  27. "mocha": "~2.2.5",
  28. "mocha-phantomjs-istanbul": "~0.0.2",
  29. "require-dir": "~0.3.0",
  30. "run-sequence": "~1.1.2",
  31. "vinyl-buffer": "~1.0.0",
  32. "vinyl-source-stream": "~1.1.0"
  33. },
  34. "scripts": {
  35. "docs": "npm run readme",
  36. "readme": "mdp --force -v",
  37. "start": "gulp start",
  38. "lint": "gulp lint",
  39. "clean": "gulp clean",
  40. "spec": "gulp spec",
  41. "instrument": "istanbul instrument --output instrument lib/",
  42. "cover": "npm run instrument && gulp cover",
  43. "test": "gulp test"
  44. },
  45. "mdp": {
  46. "title": "Assert",
  47. "pedantic": true,
  48. "include": "doc/readme",
  49. "require": "lib",
  50. "links": "links.md",
  51. "toc": "Table of Contents",
  52. "base": "https://github.com/socialally/browser-assert",
  53. "partial": [
  54. {
  55. "ref": "stability",
  56. "format": "> `Stability: %s`"
  57. },
  58. {
  59. "inc": "introduction.md"
  60. },
  61. {
  62. "req": "assert.js",
  63. "type": "code",
  64. "language": "javascript"
  65. },
  66. {
  67. "inc": [
  68. "install.md",
  69. "developer.md",
  70. "license.md"
  71. ]
  72. }
  73. ]
  74. }
  75. }