package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "vue",
  3. "version": "1.0.7",
  4. "author": "Evan You <yyx990803@gmail.com>",
  5. "license": "MIT",
  6. "description": "Simple, Fast & Composable MVVM for building interactive 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/vuejs/vue.git"
  16. },
  17. "bugs": "https://github.com/vuejs/vue/issues",
  18. "homepage": "http://vuejs.org",
  19. "scripts": {
  20. "test": "grunt ci",
  21. "install-hook": "ln -s ../../build/git-hooks/pre-commit .git/hooks/pre-commit",
  22. "dev": "webpack --watch --config build/webpack.dev.config.js & webpack --watch --config build/webpack.test.config.js"
  23. },
  24. "dependencies": {
  25. "envify": "^3.4.0"
  26. },
  27. "browserify": {
  28. "transform": [
  29. "envify"
  30. ]
  31. },
  32. "devDependencies": {
  33. "casperjs": "^1.1.0-beta3",
  34. "codecov.io": "^0.1.2",
  35. "eslint": "^1.3.1",
  36. "grunt": "^0.4.5",
  37. "grunt-eslint": "^17.1.0",
  38. "grunt-karma": "^0.12.0",
  39. "jasmine-core": "^2.3.4",
  40. "karma": "^0.13.8",
  41. "karma-chrome-launcher": "^0.2.0",
  42. "karma-commonjs": "^0.0.13",
  43. "karma-coverage": "^0.5.0",
  44. "karma-firefox-launcher": "^0.1.6",
  45. "karma-ie-launcher": "^0.2.0",
  46. "karma-jasmine": "^0.3.6",
  47. "karma-phantomjs-launcher": "^0.2.1",
  48. "karma-safari-launcher": "^0.1.1",
  49. "karma-sauce-launcher": "^0.3.0",
  50. "phantomjs": "^1.9.17",
  51. "semver": "^5.0.1",
  52. "shell-task": "^1.0.0",
  53. "uglify-js": "^2.4.24",
  54. "webpack": "^1.11.0"
  55. }
  56. }