package.json 742 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "seed",
  3. "version": "0.5.0",
  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.4.1",
  28. "grunt-contrib-jshint": "~0.7.1",
  29. "grunt-contrib-uglify": "~0.2.7",
  30. "grunt-mocha": "~0.4.1",
  31. "jscoverage": "~0.3.8",
  32. "jshint-stylish": "0.1.3"
  33. }
  34. }