package.json 710 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "seed-mvvm",
  3. "version": "0.3.2",
  4. "author": {
  5. "name": "Evan You",
  6. "email": "yyx990803@gmail.com",
  7. "url": "http://evanyou.me"
  8. },
  9. "license": "MIT",
  10. "description": "A mini front-end MVVM framework",
  11. "keywords": [
  12. "mvvm",
  13. "browser",
  14. "framework"
  15. ],
  16. "main": "src/main.js",
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/yyx990803/seed.git"
  20. },
  21. "scripts": {
  22. "test": "grunt test"
  23. },
  24. "devDependencies": {
  25. "grunt": "~0.4.1",
  26. "grunt-contrib-watch": "~0.5.3",
  27. "grunt-component-build": "~0.3.2",
  28. "grunt-contrib-jshint": "~0.6.4",
  29. "grunt-mocha": "~0.4.1",
  30. "chai": "~1.8.0",
  31. "grunt-contrib-uglify": "~0.2.4"
  32. }
  33. }