Files
ionic-framework/packages/vue-router/package.json
2022-08-24 06:09:57 +00:00

75 lines
1.7 KiB
JSON

{
"name": "@ionic/vue-router",
"version": "6.2.4-nightly.20220824",
"description": "Vue Router integration for @ionic/vue",
"scripts": {
"prepublishOnly": "npm run build",
"test.spec": "jest",
"lint": "echo add linter",
"bundle": "rollup --config rollup.config.js",
"build": "npm run clean && npm run compile && npm run bundle",
"clean": "rimraf dist",
"compile": "npm run tsc",
"tsc": "tsc -p .",
"sync": "sh ./scripts/sync.sh"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/ionic.git"
},
"keywords": [
"ionic",
"framework",
"vue",
"mobile",
"app",
"hybrid",
"webapp",
"cordova",
"progressive",
"web",
"app",
"pwa"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/ionic/issues"
},
"homepage": "https://github.com/ionic-team/ionic#readme",
"dependencies": {
"@ionic/vue": "6.2.4-nightly.20220824"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^14.10.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3",
"vue": "^3.2.37",
"vue-router": "^4.0.16"
},
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/test/jest.preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(ts?|tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}