package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "vue",
  3. "version": "0.12.16",
  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. "dev": "webpack --watch --config build/webpack.dev.config.js & webpack --watch --config build/webpack.test.config.js"
  22. },
  23. "dependencies": {
  24. "envify": "^3.4.0"
  25. },
  26. "browserify": {
  27. "transform": [
  28. "envify"
  29. ]
  30. },
  31. "devDependencies": {
  32. "casperjs": "^1.1.0-beta3",
  33. "codecov.io": "^0.1.2",
  34. "eslint": "^1.3.1",
  35. "grunt": "^0.4.5",
  36. "grunt-eslint": "^17.1.0",
  37. "grunt-karma": "^0.12.0",
  38. "jasmine-core": "^2.3.4",
  39. "karma": "^0.13.8",
  40. "karma-chrome-launcher": "^0.2.0",
  41. "karma-commonjs": "^0.0.13",
  42. "karma-coverage": "^0.5.0",
  43. "karma-firefox-launcher": "^0.1.6",
  44. "karma-jasmine": "^0.3.6",
  45. "karma-phantomjs-launcher": "^0.2.1",
  46. "karma-safari-launcher": "^0.1.1",
  47. "karma-sauce-launcher": "^0.2.14",
  48. "notevil": "^1.0.0",
  49. "phantomjs": "^1.9.17",
  50. "semver": "^5.0.1",
  51. "shell-task": "^1.0.0",
  52. "uglify-js": "^2.4.24",
  53. "webpack": "^1.11.0"
  54. }
  55. }