package.json 774 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "seed-mvvm",
  3. "version": "0.3.1",
  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": ["mvvm", "browser", "framework"],
  12. "main": "dist/seed.js",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/yyx990803/seed.git"
  16. },
  17. "scripts": {
  18. "test": "grunt test"
  19. },
  20. "devDependencies": {
  21. "grunt": "~0.4.1",
  22. "grunt-contrib-watch": "~0.4.4",
  23. "grunt-component-build": "~0.3.0",
  24. "grunt-contrib-jshint": "~0.6.0",
  25. "grunt-mocha": "~0.4.0",
  26. "chai": "~1.7.2",
  27. "grunt-contrib-uglify": "~0.2.2"
  28. }
  29. }