package.json 792 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "vue",
  3. "version": "0.7.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/vue.git"
  20. },
  21. "scripts": {
  22. "test": "grunt test"
  23. },
  24. "devDependencies": {
  25. "grunt": "~0.4.2",
  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.6",
  31. "jscoverage": "~0.3.8",
  32. "jshint-stylish": "0.1.3",
  33. "semver": "~2.2.1",
  34. "shell-task": "~0.1.1"
  35. }
  36. }