2016-04-11 10:47:28 +08:00
{
2016-04-16 03:21:25 +08:00
"name" : "vue" ,
2017-10-14 04:21:00 +08:00
"version" : "2.5.2" ,
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" ,
2017-09-18 21:47:13 +08:00
"jsdelivr" : "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" : [
2017-07-21 12:08:28 +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" ,
2017-06-17 19:11:38 +08:00
"dev:test" : "karma start test/unit/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 " ,
2017-10-10 11:11:30 +08:00
"dev:weex" : "rollup -w -c build/config.js --environment TARGET:weex-framework" ,
"dev:weex:factory" : "rollup -w -c build/config.js --environment TARGET:weex-factory" ,
2017-03-17 12:09:12 +08:00
"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" ,
2017-10-05 06:14:53 +08:00
"build:ssr" : "npm run build -- web-runtime-cjs,web-server-renderer" ,
2017-10-05 06:23:53 +08:00
"build:weex" : "npm run build -- weex" ,
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" ,
2017-06-17 19:11:38 +08:00
"test:unit" : "karma start test/unit/karma.unit.config.js" ,
"test:cover" : "karma start test/unit/karma.cover.config.js" ,
2017-10-05 06:14:53 +08:00
"test:e2e" : "npm run build -- web-full-prod,web-server-basic-renderer && 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-06-17 19:11:38 +08:00
"sauce" : "karma start test/unit/karma.sauce.config.js" ,
2017-03-17 12:09:12 +08:00
"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" ,
2017-06-17 18:38:03 +08:00
"release:note" : "node build/gen-release-note.js" ,
2017-07-13 14:38:31 +08:00
"setup" : "node build/install-hooks.js" ,
2017-06-17 18:16:40 +08:00
"commit" : "git-cz"
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" : {
2017-10-07 05:41:54 +08:00
"@types/node" : "^8.0.33" ,
"@types/webpack" : "^3.0.13" ,
2017-06-13 18:30:44 +08:00
"babel-core" : "^6.25.0" ,
"babel-eslint" : "^7.2.3" ,
2016-11-18 08:21:57 +08:00
"babel-helper-vue-jsx-merge-props" : "^2.0.2" ,
2017-06-13 18:30:44 +08:00
"babel-loader" : "^7.0.0" ,
"babel-plugin-istanbul" : "^4.1.4" ,
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" ,
2017-06-13 18:30:44 +08:00
"babel-plugin-transform-vue-jsx" : "^3.4.3" ,
"babel-preset-es2015" : "^6.24.1" ,
2016-05-28 07:16:14 +08:00
"babel-preset-flow-vue" : "^1.0.0" ,
2017-09-28 06:05:39 +08:00
"buble" : "^0.16.0" ,
2017-04-16 21:02:58 +08:00
"chalk" : "^1.1.3" ,
2017-06-13 18:30:44 +08:00
"chromedriver" : "^2.30.1" ,
2016-05-28 07:16:14 +08:00
"codecov.io" : "^0.1.6" ,
2017-06-17 18:16:40 +08:00
"commitizen" : "^2.9.6" ,
2017-06-17 18:38:03 +08:00
"conventional-changelog" : "^1.1.3" ,
2017-06-13 18:30:44 +08:00
"cross-spawn" : "^5.1.0" ,
2017-06-17 18:16:40 +08:00
"cz-conventional-changelog" : "^2.0.0" ,
2016-06-28 16:52:18 +08:00
"de-indent" : "^1.0.2" ,
2017-06-13 18:30:44 +08:00
"es6-promise" : "^4.1.0" ,
"eslint" : "^3.0.0" ,
"eslint-loader" : "^1.7.1" ,
"eslint-plugin-flowtype" : "^2.34.0" ,
2017-10-07 02:45:14 +08:00
"eslint-plugin-jasmine" : "^2.8.4" ,
2017-06-02 11:36:26 +08:00
"eslint-plugin-vue-libs" : "^1.2.0" ,
2017-06-13 18:30:44 +08:00
"file-loader" : "^0.11.2" ,
2017-09-28 05:32:44 +08:00
"flow-bin" : "^0.54.0" ,
2017-04-13 16:50:43 +08:00
"hash-sum" : "^1.0.2" ,
2017-06-13 18:30:44 +08:00
"he" : "^1.1.1" ,
"http-server" : "^0.10.0" ,
"jasmine" : "^2.6.0" ,
"jasmine-core" : "^2.6.3" ,
"karma" : "^1.7.0" ,
"karma-chrome-launcher" : "^2.1.1" ,
"karma-coverage" : "^1.1.1" ,
"karma-firefox-launcher" : "^1.0.1" ,
"karma-jasmine" : "^1.1.0" ,
"karma-mocha-reporter" : "^2.2.3" ,
"karma-phantomjs-launcher" : "^1.0.4" ,
2016-05-28 07:16:14 +08:00
"karma-safari-launcher" : "^1.0.0" ,
2017-06-13 18:30:44 +08:00
"karma-sauce-launcher" : "^1.1.0" ,
"karma-sourcemap-loader" : "^0.3.7" ,
"karma-webpack" : "^2.0.3" ,
"lodash" : "^4.17.4" ,
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-06-13 18:30:44 +08:00
"lru-cache" : "^4.1.1" ,
"nightwatch" : "^0.9.16" ,
2016-07-29 08:30:38 +08:00
"nightwatch-helpers" : "^1.2.0" ,
2017-06-13 18:30:44 +08:00
"phantomjs-prebuilt" : "^2.1.14" ,
"resolve" : "^1.3.3" ,
2017-09-28 06:05:39 +08:00
"rollup" : "^0.50.0" ,
2017-06-13 18:30:44 +08:00
"rollup-plugin-alias" : "^1.3.1" ,
2017-09-28 06:05:39 +08:00
"rollup-plugin-babel" : "^3.0.2" ,
"rollup-plugin-buble" : "^0.16.0" ,
2017-06-13 16:54:55 +08:00
"rollup-plugin-commonjs" : "^8.0.2" ,
2016-09-22 12:07:33 +08:00
"rollup-plugin-flow-no-whitespace" : "^1.0.0" ,
2017-06-13 16:54:55 +08:00
"rollup-plugin-node-resolve" : "^3.0.0" ,
2017-09-28 06:05:39 +08:00
"rollup-plugin-replace" : "^2.0.0" ,
2017-06-13 18:30:44 +08:00
"rollup-watch" : "^4.0.0" ,
2017-06-13 18:40:22 +08:00
"selenium-server" : "^2.53.1" ,
2017-03-27 19:58:17 +08:00
"serialize-javascript" : "^1.3.0" ,
2017-06-17 19:21:00 +08:00
"shelljs" : "^0.7.8" ,
2017-10-07 02:45:14 +08:00
"typescript" : "^2.5.2" ,
2017-06-13 18:30:44 +08:00
"uglify-js" : "^3.0.15" ,
"webpack" : "^2.6.1" ,
2017-10-13 12:20:59 +08:00
"weex-js-runtime" : "^0.23.0"
2017-06-17 18:16:40 +08:00
} ,
"config" : {
"commitizen" : {
"path" : "./node_modules/cz-conventional-changelog"
}
2017-02-26 11:09:14 +08:00
}
2016-04-11 10:47:28 +08:00
}