UNPKG

vue-egret

Version:
109 lines (108 loc) 3.21 kB
{ "name": "vue-egret", "version": "1.4.2", "author": "Hsuna", "description": "Egret MVVM", "main": "dist/vue-egret.common.js", "module": "dist/vue-egret.esm.js", "unpkg": "dist/vue-egret.js", "typings": "types/index.d.ts", "scripts": { "start": "npm run dev", "dev": "webpack-dev-server --config ./build/webpack.test.js --mode=development --progress", "libs": "webpack --config ./build/webpack.libs.js", "build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js", "docs:dev": "vuepress dev docs --temp .temp --no-cache --debug", "docs:build": "vuepress build docs", "lint": "eslint src --fix --ext .js,.ts", "lint:packages": "eslint packages --fix --ext .js,.ts", "lint:test": "eslint test --fix --ext .js,.ts", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "commit": "git-cz" }, "keywords": [ "vue", "Egret" ], "license": "MIT", "bugs": { "url": "https://github.com/hsuna/vue-egret/issues" }, "homepage": "https://github.com/hsuna/vue-egret#readme", "repository": { "type": "git", "url": "https://github.com/hsuna/vue-egret.git" }, "devDependencies": { "@babel/core": "^7.4.4", "@babel/plugin-proposal-class-properties": "^7.5.5", "@babel/plugin-transform-runtime": "^7.5.5", "@babel/polyfill": "^7.4.4", "@babel/preset-env": "^7.5.5", "@babel/runtime": "^7.5.5", "@commitlint/cli": "^7.0.0", "@commitlint/config-conventional": "^7.0.1", "@rollup/plugin-alias": "2.2.0", "@rollup/plugin-commonjs": "11.1.0", "@rollup/plugin-replace": "2.3.2", "@rollup/plugin-typescript": "^8.2.0", "@types/node": "^14.14.31", "@typescript-eslint/eslint-plugin": "^4.16.1", "@typescript-eslint/parser": "^4.16.1", "autoprefixer": "^9.4.2", "babel-loader": "^8.0.6", "commitizen": "^4.2.3", "conventional-changelog-cli": "^2.1.1", "copy-webpack-plugin": "^5.0.4", "cross-env": "^3.0.0", "cz-conventional-changelog": "3.3.0", "eslint": "^7.21.0", "eslint-plugin-prettier": "^3.3.1", "friendly-errors-webpack-plugin": "^1.7.0", "husky": "4.3.8", "lint-staged": "^10.5.4", "prettier": "^2.2.1", "rollup": "^2.7.3", "rollup-plugin-analyzer": "^3.3.0", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-copy": "^3.4.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-strip": "^1.2.2", "rollup-plugin-terser": "^5.3.0", "rollup-plugin-vue": "5.1.6", "ts-loader": "^6.0.4", "typescript": "^3.6.2", "url-loader": "^1.1.2", "vuepress": "^1.5.4", "webpack": "^4.28.3", "webpack-cli": "^3.3.2", "webpack-dev-server": "^3.4.1" }, "babel": { "presets": [ "@babel/preset-env" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "lint-staged": { "{src,packages,test}/**/*.{js,ts}": [ "eslint --fix", "prettier --write" ] }, "browserslist": [ "last 1 version", "> 1%", "IE 10" ] }