vue/package.json

120 lines
4.6 KiB
JSON
Raw Normal View History

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",
"typings": "types/index.d.ts",
2016-04-13 18:45:34 +08:00
"files": [
"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",
"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",
"test:sauce": "npm run sauce -- 0 && npm run sauce -- 1 && npm run sauce -- 2",
"test:types": "tsc -p ./types/test/tsconfig.json",
"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": {
"babel-core": "^6.9.0",
2016-11-16 05:45:12 +08:00
"babel-eslint": "^7.1.0",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^6.2.4",
2017-02-22 02:14:39 +08:00
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.2.0",
"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",
"chalk": "^1.1.3",
"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",
"eslint-plugin-flowtype": "^2.16.0",
"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",
"flow-bin": "^0.45.0",
2017-04-13 16:50:43 +08:00
"hash-sum": "^1.0.2",
"he": "^1.1.0",
"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",
"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",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"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",
"lodash.template": "^4.4.0",
"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",
"phantomjs-prebuilt": "^2.1.1",
"resolve": "^1.2.0",
2017-01-21 03:37:02 +08:00
"rollup": "^0.41.4",
"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",
"rollup-plugin-replace": "^1.1.0",
2017-01-21 03:37:02 +08:00
"rollup-watch": "^3.2.2",
"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",
"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
}