2016-04-11 10:47:28 +08:00
{
2016-04-16 03:21:25 +08:00
"name" : "vue" ,
2017-05-10 00:57:08 +08:00
"version" : "2.3.3" ,
2016-04-21 10:34:23 +08:00
"description" : "Reactive, component-oriented view layer for modern web interfaces." ,
2016-11-17 05:41:44 +08:00
"main" : "dist/vue.runtime.common.js" ,
2017-02-26 11:09:14 +08:00
"module" : "dist/vue.runtime.esm.js" ,
"unpkg" : "dist/vue.js" ,
2016-09-04 17:33:25 +08:00
"typings" : "types/index.d.ts" ,
2016-04-13 18:45:34 +08:00
"files" : [
2016-09-01 11:46:10 +08:00
"src" ,
2017-02-27 01:40:57 +08:00
"dist/*.js" ,
"types/*.d.ts"
2016-04-13 18:45:34 +08:00
] ,
2016-04-11 10:47:28 +08:00
"scripts" : {
2017-03-17 12:09:12 +08:00
"dev" : "rollup -w -c build/config.js --environment TARGET:web-full-dev" ,
"dev:cjs" : "rollup -w -c build/config.js --environment TARGET:web-runtime-cjs" ,
2017-04-07 16:16:22 +08:00
"dev:esm" : "rollup -w -c build/config.js --environment TARGET:web-runtime-esm" ,
2016-04-26 04:37:20 +08:00
"dev:test" : "karma start build/karma.dev.config.js" ,
2017-03-17 12:09:12 +08:00
"dev:ssr" : "rollup -w -c build/config.js --environment TARGET:web-server-renderer" ,
"dev:compiler" : "rollup -w -c build/config.js --environment TARGET:web-compiler " ,
"dev:weex" : "rollup -w -c build/config.js --environment TARGET:weex-framework " ,
"dev:weex:compiler" : "rollup -w -c build/config.js --environment TARGET:weex-compiler " ,
2016-08-28 07:03:15 +08:00
"build" : "node build/build.js" ,
2016-11-17 05:41:44 +08:00
"build:ssr" : "npm run build -- vue.runtime.common.js,vue-server-renderer" ,
2016-11-06 04:20:00 +08:00
"build:weex" : "npm run build -- weex-vue-framework,weex-template-compiler" ,
2017-03-08 15:59:36 +08:00
"test" : "npm run lint && flow check && npm run test:types && npm run test:cover && npm run test:e2e -- --env phantomjs && npm run test:ssr && npm run test:weex" ,
2016-08-28 09:13:55 +08:00
"test:unit" : "karma start build/karma.unit.config.js" ,
"test:cover" : "karma start build/karma.cover.config.js" ,
2016-10-14 21:27:54 +08:00
"test:e2e" : "npm run build -- vue.min.js && node test/e2e/runner.js" ,
2016-11-06 04:20:00 +08:00
"test:weex" : "npm run build:weex && jasmine JASMINE_CONFIG_PATH=test/weex/jasmine.json" ,
2016-11-17 05:41:44 +08:00
"test:ssr" : "npm run build:ssr && jasmine JASMINE_CONFIG_PATH=test/ssr/jasmine.json" ,
2016-06-14 05:51:22 +08:00
"test:sauce" : "npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2" ,
2016-08-24 03:01:30 +08:00
"test:types" : "tsc -p ./types/test/tsconfig.json" ,
2016-06-14 05:51:22 +08:00
"lint" : "eslint src build test" ,
"flow" : "flow check" ,
2017-03-17 12:09:12 +08:00
"sauce" : "karma start build/karma.sauce.config.js" ,
"bench:ssr" : "npm run build:ssr && node benchmarks/ssr/renderToString.js && node benchmarks/ssr/renderToStream.js" ,
2016-11-06 04:20:00 +08:00
"release" : "bash build/release.sh" ,
2016-11-26 02:16:11 +08:00
"release:weex" : "bash build/release-weex.sh" ,
"install:hooks" : "ln -fs ../../build/git-hooks/pre-commit .git/hooks/pre-commit"
2016-04-11 10:47:28 +08:00
} ,
"repository" : {
"type" : "git" ,
2016-04-27 07:02:24 +08:00
"url" : "git+https://github.com/vuejs/vue.git"
2016-04-11 10:47:28 +08:00
} ,
"keywords" : [
"vue"
] ,
"author" : "Evan You" ,
"license" : "MIT" ,
"bugs" : {
2016-04-27 07:02:24 +08:00
"url" : "https://github.com/vuejs/vue/issues"
2016-04-11 10:47:28 +08:00
} ,
2016-04-27 07:02:24 +08:00
"homepage" : "https://github.com/vuejs/vue#readme" ,
2016-04-11 10:47:28 +08:00
"devDependencies" : {
2016-05-28 07:16:14 +08:00
"babel-core" : "^6.9.0" ,
2016-11-16 05:45:12 +08:00
"babel-eslint" : "^7.1.0" ,
2016-11-18 08:21:57 +08:00
"babel-helper-vue-jsx-merge-props" : "^2.0.2" ,
2016-05-28 07:16:14 +08:00
"babel-loader" : "^6.2.4" ,
2017-02-22 02:14:39 +08:00
"babel-plugin-istanbul" : "^4.0.0" ,
2017-02-02 02:20:48 +08:00
"babel-plugin-syntax-dynamic-import" : "^6.18.0" ,
2016-11-18 08:21:57 +08:00
"babel-plugin-syntax-jsx" : "^6.18.0" ,
"babel-plugin-transform-vue-jsx" : "^3.2.0" ,
2016-05-28 07:16:14 +08:00
"babel-preset-es2015" : "^6.9.0" ,
"babel-preset-flow-vue" : "^1.0.0" ,
2017-01-21 03:37:02 +08:00
"buble" : "^0.15.2" ,
2017-04-16 21:02:58 +08:00
"chalk" : "^1.1.3" ,
2016-05-28 07:16:14 +08:00
"chromedriver" : "^2.21.2" ,
"codecov.io" : "^0.1.6" ,
2016-11-16 05:45:12 +08:00
"cross-spawn" : "^5.0.1" ,
2016-06-28 16:52:18 +08:00
"de-indent" : "^1.0.2" ,
2016-11-16 05:45:12 +08:00
"es6-promise" : "^4.0.5" ,
"eslint" : "^3.10.1" ,
2016-05-26 04:03:22 +08:00
"eslint-loader" : "^1.3.0" ,
2016-09-09 16:50:22 +08:00
"eslint-plugin-flowtype" : "^2.16.0" ,
2016-11-26 02:04:44 +08:00
"eslint-plugin-jasmine" : "^2.1.0" ,
2017-06-02 11:36:26 +08:00
"eslint-plugin-vue-libs" : "^1.2.0" ,
2017-03-30 21:53:15 +08:00
"file-loader" : "^0.10.1" ,
2017-04-29 14:56:14 +08:00
"flow-bin" : "^0.45.0" ,
2017-04-13 16:50:43 +08:00
"hash-sum" : "^1.0.2" ,
2016-10-13 17:05:35 +08:00
"he" : "^1.1.0" ,
2016-05-28 07:16:14 +08:00
"http-server" : "^0.9.0" ,
2016-11-16 05:45:12 +08:00
"jasmine" : "^2.5.2" ,
"jasmine-core" : "^2.5.2" ,
2016-06-28 07:28:39 +08:00
"karma" : "^1.1.0" ,
2016-08-28 23:12:53 +08:00
"karma-chrome-launcher" : "^2.0.0" ,
2016-05-28 07:16:14 +08:00
"karma-coverage" : "^1.0.0" ,
"karma-firefox-launcher" : "^1.0.0" ,
"karma-jasmine" : "^1.0.2" ,
2016-06-14 06:56:36 +08:00
"karma-mocha-reporter" : "^2.0.4" ,
2016-05-28 07:16:14 +08:00
"karma-phantomjs-launcher" : "^1.0.0" ,
"karma-safari-launcher" : "^1.0.0" ,
2016-06-14 05:51:22 +08:00
"karma-sauce-launcher" : "^1.0.0" ,
2016-05-28 07:16:14 +08:00
"karma-sourcemap-loader" : "^0.3.0" ,
2017-01-21 03:37:02 +08:00
"karma-webpack" : "^2.0.1" ,
2016-11-16 05:45:12 +08:00
"lodash" : "^4.17.1" ,
2017-04-19 11:11:59 +08:00
"lodash.template" : "^4.4.0" ,
2017-04-29 14:16:23 +08:00
"lodash.uniq" : "^4.5.0" ,
2017-04-12 15:22:24 +08:00
"lru-cache" : "^4.0.2" ,
2016-11-16 05:45:12 +08:00
"nightwatch" : "^0.9.9" ,
2016-07-29 08:30:38 +08:00
"nightwatch-helpers" : "^1.2.0" ,
2016-05-28 07:16:14 +08:00
"phantomjs-prebuilt" : "^2.1.1" ,
2017-02-16 01:07:07 +08:00
"resolve" : "^1.2.0" ,
2017-01-21 03:37:02 +08:00
"rollup" : "^0.41.4" ,
2016-05-28 07:16:14 +08:00
"rollup-plugin-alias" : "^1.2.0" ,
"rollup-plugin-babel" : "^2.4.0" ,
2017-01-21 03:37:02 +08:00
"rollup-plugin-buble" : "^0.15.0" ,
2016-09-22 12:07:33 +08:00
"rollup-plugin-flow-no-whitespace" : "^1.0.0" ,
2016-05-28 07:16:14 +08:00
"rollup-plugin-replace" : "^1.1.0" ,
2017-01-21 03:37:02 +08:00
"rollup-watch" : "^3.2.2" ,
2017-01-21 08:50:06 +08:00
"selenium-server" : "^2.53.1" ,
2017-03-27 19:58:17 +08:00
"serialize-javascript" : "^1.3.0" ,
2017-02-22 02:14:39 +08:00
"typescript" : "^2.1.6" ,
2016-05-28 07:16:14 +08:00
"uglify-js" : "^2.6.2" ,
2017-02-02 01:18:01 +08:00
"webpack" : "^2.2.0" ,
2016-11-06 04:20:00 +08:00
"weex-js-runtime" : "^0.17.0-alpha4" ,
2017-01-21 03:37:02 +08:00
"weex-vdom-tester" : "^0.1.4"
2017-02-26 11:09:14 +08:00
}
2016-04-11 10:47:28 +08:00
}