2
0

package.json 960 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "vue",
  3. "version": "0.11.0",
  4. "author": "Evan You <yyx990803@gmail.com>",
  5. "license": "MIT",
  6. "description": "Simple, Fast & Composable MVVM for building interative interfaces",
  7. "keywords": [
  8. "mvvm",
  9. "browser",
  10. "framework"
  11. ],
  12. "main": "src/vue.js",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/yyx990803/vue.git"
  16. },
  17. "bugs": "https://github.com/yyx990803/vue/issues",
  18. "homepage": "http://vuejs.org",
  19. "scripts": {
  20. "test": "grunt ci"
  21. },
  22. "devDependencies": {
  23. "browserify": "^4.2.0",
  24. "grunt": "^0.4.5",
  25. "grunt-browserify": "^2.1.3",
  26. "grunt-contrib-jshint": "^0.10.0",
  27. "grunt-karma": "^0.8.3",
  28. "jshint-stylish": "^0.3.0",
  29. "karma": "^0.12.16",
  30. "karma-browserify": "^0.2.1",
  31. "karma-chrome-launcher": "^0.1.4",
  32. "karma-commonjs": "0.0.10",
  33. "karma-firefox-launcher": "^0.1.3",
  34. "karma-jasmine": "^0.1.5",
  35. "karma-phantomjs-launcher": "^0.1.4"
  36. }
  37. }