package.json 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "nprogress",
  3. "author": "Rico Sta. Cruz <hi@ricostacruz.com>",
  4. "description": "Simple slim progress bars",
  5. "version": "0.2.0",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/rstacruz/nprogress.git"
  9. },
  10. "scripts": {
  11. "test": "mocha"
  12. },
  13. "main": "nprogress.js",
  14. "license": "MIT",
  15. "devDependencies": {
  16. "chai": "~1.6.1",
  17. "jquery": "^2.1.1",
  18. "jsdom": "^5.4.1",
  19. "mocha": "^2.2.4",
  20. "mocha-jsdom": "^0.3.0"
  21. },
  22. "dependencies": {},
  23. "jspm": {
  24. "format": "global",
  25. "shim": {
  26. "nprogress": {
  27. "deps": [
  28. "./nprogress.css!"
  29. ]
  30. }
  31. },
  32. "dependencies": {
  33. "css": "*"
  34. }
  35. },
  36. "spm": {
  37. "main": "nprogress.js",
  38. "output": [
  39. "nprogress.css"
  40. ],
  41. "ignore": [
  42. "support",
  43. "test",
  44. "vendor"
  45. ]
  46. }
  47. }