UNPKG

vue-autowire

Version:
78 lines (77 loc) 2.22 kB
{ "name": "vue-autowire", "version": "0.2.2", "description": "Autowiring plugin for VueJS", "author": "Kaizen Dorks <kaizendorks@gmail.com>", "license": "MIT", "main": "dist/vue-autowire.common.js", "module": "dist/vue-autowire.esm.js", "unpkg": "dist/vue-autowire.js", "jsdelivr": "dist/vue-autowire.js", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com:kaizendorks/vue-autowire.git" }, "files": [ "src/**/*.js", "dist/*.js" ], "keywords": [ "vue", "vuejs", "autowire" ], "scripts": { "dev": "node examples/server.js", "build": "node build/build.js", "lint": "eslint src test examples", "test": "npm run lint && npm run test:unit && npm run test:e2e", "test:unit": "jest --config=jest.config.js", "test:unit:coverage": "jest --coverage --config=jest.config.js", "test:e2e": "jest --config=jest.e2e.config.js --runInBand", "docs": "vuepress dev docs-src", "docs:build": "vuepress build docs-src", "release": "bash bin/release.sh" }, "gitHooks": { "pre-commit": "lint-staged" }, "lint-staged": { "*.{js,vue}": [ "eslint --fix", "git add" ] }, "devDependencies": { "@babel/core": "^7.8.4", "@babel/preset-env": "^7.8.4", "babel-eslint": "^10.0.3", "babel-jest": "^25.1.0", "buble": "^0.19.8", "css-loader": "^3.4.2", "eslint": "^6.8.0", "eslint-plugin-vue-libs": "^4.0.0", "express": "^4.16.2", "html-webpack-plugin": "^3.2.0", "jest": "^25.1.0", "jest-puppeteer": "^4.4.0", "jest-when": "^2.7.0", "lint-staged": "^10.0.7", "puppeteer": "^2.1.1", "rollup": "^1.31.0", "rollup-plugin-buble": "^0.19.8", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-replace": "^2.0.0", "terser": "^4.6.3", "vue": "^2.6.11", "vue-loader": "^15.9.0", "vuepress": "^1.3.0", "webpack": "^4.9.0", "webpack-dev-middleware": "^3.7.2" }, "bugs": { "url": "https://github.com/kaizendorks/vue-autowire/issues" }, "homepage": "https://github.com/kaizendorks/vue-autowire#readme" }