Files
ionic-framework/vue/package.json
2019-07-08 20:26:39 -04:00

68 lines
1.6 KiB
JSON

{
"name": "@ionic/vue",
"version": "0.0.8-test",
"description": "Vue specific wrappers for @ionic/core",
"main": "dist/ionic-vue.common.js",
"types": "dist/types/index.d.ts",
"module": "dist/ionic-vue.esm.js",
"unpkg": "dist/ionic-vue.js",
"jsdelivr": "dist/ionic-vue.js",
"contributors": [
"Josh Thomas <josh@ionic.io>",
"Mike Hartington <mikehartington@gmail.com",
"Michael Tintiuc <michael.tintiuc@moduscreate.com>"
],
"files": [
"dist/"
],
"bugs": {
"url": "https://github.com/ionic-team/ionic/issues"
},
"keywords": [
"ionic",
"framework",
"vue",
"mobile",
"app",
"webapp",
"capacitor",
"cordova",
"progressive web app",
"pwa"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/ionic.git"
},
"scripts": {
"dev": "rollup -c",
"watch": "rollup -c -w",
"build": "npm run clean && NODE_ENV=production rollup -c --configProd",
"clean": "node scripts/clean.js",
"lint": "tslint --project .",
"lint.fix": "tslint --project . --fix",
"test": "jest --coverage --verbose"
},
"devDependencies": {
"rollup": "^0.62.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-vue": "^4.3.0",
"rollup-plugin-typescript2": "^0.17.1",
"tslib": "1.9.3",
"tslint": "5.11.0",
"tslint-ionic-rules": "0.0.19",
"typescript": "3.1.1",
"vue": "^2.5.17",
"vue-template-compiler": "^2.5.17",
"vue-router": "^3.0.1"
},
"dependencies": {
"@ionic/core": "^4.6.0"
},
"peerDependencies": {
"vue": "^2.5.17",
"vue-router": "^3.0.1"
}
}