2
0

package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "vue",
  3. "version": "0.10.6",
  4. "author": {
  5. "name": "Evan You",
  6. "email": "yyx990803@gmail.com",
  7. "url": "http://evanyou.me"
  8. },
  9. "license": "MIT",
  10. "description": "Simple, Fast & Composable MVVM for building interative interfaces",
  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. "bugs": "https://github.com/yyx990803/vue/issues",
  22. "homepage": "http://vuejs.org",
  23. "scripts": {
  24. "test": "grunt travis"
  25. },
  26. "devDependencies": {
  27. "grunt": "~0.4.5",
  28. "grunt-contrib-watch": "~0.6.1",
  29. "grunt-contrib-jshint": "~0.10.0",
  30. "grunt-contrib-connect": "~0.7.1",
  31. "grunt-karma": "~0.8.3",
  32. "grunt-karma-coveralls": "~2.5.1",
  33. "grunt-saucelabs": "~7.0.0",
  34. "gulp-component": "~0.1.8",
  35. "vinyl-fs": "~0.1.4",
  36. "jshint-stylish": "~0.2.0",
  37. "semver": "~2.3.0",
  38. "shell-task": "~0.1.2",
  39. "map-stream": "0.1.0",
  40. "uglify-js": "~2.4.13",
  41. "karma": "~0.12.6",
  42. "karma-mocha": "~0.1.3",
  43. "karma-coverage": "~0.2.4",
  44. "karma-script-launcher": "~0.1.0",
  45. "karma-phantomjs-launcher": "~0.1.4",
  46. "karma-chrome-launcher": "~0.1.4",
  47. "karma-firefox-launcher": "~0.1.3",
  48. "karma-safari-launcher": "~0.1.1"
  49. },
  50. "spm": {
  51. "main": "src/main.js",
  52. "ignore": [
  53. ".*",
  54. "examples",
  55. "test",
  56. "tasks",
  57. "dist",
  58. "Gruntfile.js",
  59. "bower.json",
  60. "component.json",
  61. "*.md"
  62. ]
  63. }
  64. }