vue/package.json

162 lines
5.7 KiB
JSON
Raw Normal View History

2016-04-11 10:47:28 +08:00
{
2016-04-16 03:21:25 +08:00
"name": "vue",
2021-06-07 17:55:28 +08:00
"version": "2.6.14",
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",
"jsdelivr": "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
],
"sideEffects": false,
2016-04-11 10:47:28 +08:00
"scripts": {
2017-12-22 09:17:47 +08:00
"dev": "rollup -w -c scripts/config.js --environment TARGET:web-full-dev",
2019-01-10 11:26:54 +08:00
"dev:cjs": "rollup -w -c scripts/config.js --environment TARGET:web-runtime-cjs-dev",
2017-12-22 09:17:47 +08:00
"dev:esm": "rollup -w -c scripts/config.js --environment TARGET:web-runtime-esm",
"dev:test": "karma start test/unit/karma.dev.config.js",
2017-12-22 09:17:47 +08:00
"dev:ssr": "rollup -w -c scripts/config.js --environment TARGET:web-server-renderer",
"dev:compiler": "rollup -w -c scripts/config.js --environment TARGET:web-compiler ",
"dev:weex": "rollup -w -c scripts/config.js --environment TARGET:weex-framework",
"dev:weex:factory": "rollup -w -c scripts/config.js --environment TARGET:weex-factory",
"dev:weex:compiler": "rollup -w -c scripts/config.js --environment TARGET:weex-compiler ",
"build": "node scripts/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",
"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",
2021-04-07 21:41:48 +08:00
"test:weex": "npm run build:weex && jasmine-ts JASMINE_CONFIG_PATH=test/weex/jasmine.js",
2018-10-24 06:40:55 +08:00
"test:ssr": "npm run build:ssr && jasmine JASMINE_CONFIG_PATH=test/ssr/jasmine.js",
"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 scripts test",
"flow": "flow check",
2021-04-07 00:05:05 +08:00
"ts-check": "tsc --noEmit",
"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",
2017-12-22 09:17:47 +08:00
"release": "bash scripts/release.sh",
"release:weex": "bash scripts/release-weex.sh",
"release:note": "node scripts/gen-release-note.js",
"commit": "git-cz"
2016-04-11 10:47:28 +08:00
},
2018-01-06 23:08:47 +08:00
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
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": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/plugin-transform-flow-strip-types": "^7.16.7",
"@babel/preset-env": "^7.17.10",
"@babel/register": "^7.17.7",
"@rollup/plugin-alias": "^3.1.9",
2021-04-07 00:04:48 +08:00
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@types/node": "^17.0.30",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"acorn": "^8.7.1",
"acorn-walk": "^8.2.0",
"babel-eslint": "^10.1.0",
2018-10-24 06:40:55 +08:00
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.2.5",
"babel-plugin-istanbul": "^6.1.1",
2018-10-24 06:40:55 +08:00
"babel-plugin-transform-vue-jsx": "^4.0.1",
"babel-preset-flow-vue": "^1.0.0",
2021-04-08 00:25:57 +08:00
"buble": "^0.20.0",
"chalk": "^5.0.1",
"chromedriver": "^100.0.0",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"conventional-changelog": "^3.1.25",
"cross-spawn": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
2016-06-28 16:52:18 +08:00
"de-indent": "^1.0.2",
"es6-promise": "^4.2.8",
"escodegen": "^2.0.0",
"eslint": "^8.14.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jasmine": "^4.1.3",
"file-loader": "^6.2.0",
"flow-bin": "^0.176.3",
"hash-sum": "^2.0.0",
2017-06-13 18:30:44 +08:00
"he": "^1.1.1",
"http-server": "^14.1.0",
"jasmine": "^4.1.0",
"jasmine-core": "^4.1.0",
"jasmine-ts": "^0.4.0",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.0.0",
2017-06-13 18:30:44 +08:00
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"lint-staged": "^12.4.1",
"lodash": "^4.17.21",
"lodash.template": "^4.4.0",
"lodash.uniq": "^4.5.0",
"lru-cache": "^7.8.1",
"nightwatch": "^2.1.3",
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",
"puppeteer": "^13.7.0",
"resolve": "^1.22.0",
"rollup": "^2.70.2",
"rollup-plugin-typescript2": "^0.31.2",
"selenium-server": "^3.141.59",
"serialize-javascript": "^6.0.0",
"shelljs": "^0.8.5",
"terser": "^5.13.1",
"ts-loader": "^9.2.9",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"webpack": "~5.72.0",
"weex-js-runtime": "^0.23.6",
2018-01-06 23:08:47 +08:00
"weex-styler": "^0.3.0",
2019-01-07 23:58:29 +08:00
"yorkie": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/he": "^1.1.2"
2017-02-26 11:09:14 +08:00
}
2016-04-11 10:47:28 +08:00
}