vue/package.json

120 lines
4.4 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-01-17 07:48:07 +08:00
"version": "2.1.9",
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",
"typings": "types/index.d.ts",
2016-04-13 18:45:34 +08:00
"files": [
"dist/vue.js",
"dist/vue.min.js",
2016-11-17 05:41:44 +08:00
"dist/vue.runtime.js",
"dist/vue.runtime.min.js",
"dist/vue.common.js",
"dist/vue.runtime.common.js",
"src",
"types/index.d.ts",
"types/options.d.ts",
"types/plugin.d.ts",
"types/vnode.d.ts",
"types/vue.d.ts"
2016-04-13 18:45:34 +08:00
],
2016-04-11 10:47:28 +08:00
"scripts": {
2016-11-17 05:41:44 +08:00
"dev": "TARGET=web-full-dev rollup -w -c build/config.js",
"dev:cjs": "TARGET=web-runtime-cjs rollup -w -c build/config.js",
2016-04-26 04:37:20 +08:00
"dev:test": "karma start build/karma.dev.config.js",
2016-08-28 22:43:19 +08:00
"dev:ssr": "TARGET=web-server-renderer rollup -w -c build/config.js",
"dev:compiler": "TARGET=web-compiler rollup -w -c build/config.js",
2016-11-06 04:20:00 +08:00
"dev:weex": "TARGET=weex-framework rollup -w -c build/config.js",
"dev:weex:compiler": "TARGET=weex-compiler rollup -w -c build/config.js",
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",
"test": "npm run lint && flow check && npm run test:types && npm run test:cover && npm run test:e2e -- --env phantomjs && npm run test:ssr",
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",
2016-08-28 09:13:55 +08:00
"sauce": "SAUCE=true karma start build/karma.sauce.config.js",
2016-11-17 05:41:44 +08:00
"bench:ssr": "npm run build:ssr && NODE_ENV=production node benchmarks/ssr/renderToString.js && NODE_ENV=production VUE_ENV=server 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",
2016-12-08 06:40:27 +08:00
"babel-plugin-istanbul": "^3.0.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",
2016-09-22 11:57:53 +08:00
"buble": "^0.14.0",
"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",
"eslint-config-vue": "^2.0.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",
2016-11-01 04:28:38 +08:00
"eslint-plugin-vue": "^1.0.0",
"flow-bin": "^0.33.0",
"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",
"karma-webpack": "^1.7.0",
2016-11-16 05:45:12 +08:00
"lodash": "^4.17.1",
"nightwatch": "^0.9.9",
2016-07-29 08:30:38 +08:00
"nightwatch-helpers": "^1.2.0",
"phantomjs-prebuilt": "^2.1.1",
2016-09-29 06:33:36 +08:00
"rollup": "^0.36.1",
"rollup-plugin-alias": "^1.2.0",
"rollup-plugin-babel": "^2.4.0",
2016-09-22 11:57:53 +08:00
"rollup-plugin-buble": "^0.14.0",
2016-09-22 12:07:33 +08:00
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-replace": "^1.1.0",
2016-08-28 07:03:15 +08:00
"rollup-watch": "^2.5.0",
"selenium-server": "2.53.1",
2016-11-16 05:45:12 +08:00
"typescript": "^2.0.9",
"uglify-js": "^2.6.2",
2016-11-06 04:20:00 +08:00
"webpack": "^1.13.2",
"weex-js-runtime": "^0.17.0-alpha4",
"weex-vdom-tester": "^0.1.3"
2016-11-16 05:45:12 +08:00
},
2016-12-23 12:49:44 +08:00
"dependencies": {},
"unpkg": "dist/vue.js"
2016-04-11 10:47:28 +08:00
}