-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
86 lines (86 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@modus/ionic-vue",
"version": "1.3.12",
"description": "Ionic integration adapters for Vue",
"homepage": "https://moduscreate.com",
"author": "Michael Tintiuc <[email protected]>",
"user": "michaeltintiuc",
"license": "MIT",
"repository": "github:ModusCreateOrg/ionic-vue",
"main": "dist/ionic-vue.common.js",
"typings": "types/index.d.ts",
"module": "dist/ionic-vue.esm.js",
"unpkg": "dist/ionic-vue.js",
"jsdelivr": "dist/ionic-vue.js",
"files": [
"src/",
"types/",
"dist/*.js",
"dist/*.ts"
],
"bugs": {
"url": "https://github.com/ModusCreateOrg/ionic-vue/issues"
},
"keywords": [
"ionic",
"ion",
"vuejs",
"vue",
"typescript",
"router",
"routing",
"plugin",
"component",
"navigation",
"nav",
"transition",
"api",
"wrapper",
"framework",
"delegate",
"mobile",
"pwa",
"progressive web app",
"cordova",
"capacitor",
"app",
"webapp"
],
"scripts": {
"dev": "rollup -c ./build/rollup.config.js",
"watch": "rollup -w -c ./build/rollup.config.js",
"prod": "npm run lint && npm run clean && NODE_ENV=production rollup -c ./build/rollup.config.js --configProd",
"lint": "tslint --project . --fix",
"test": "jest --coverage --verbose",
"install.peer": "npm i --no-save vue vue-template-compiler vue-router @ionic/core",
"clean": "node ./scripts/clean.js"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.24",
"babel-jest": "^25.3.0",
"babel-preset-env": "^1.7.0",
"jest": "^25.3.0",
"jest-sonar-reporter": "^2.0.0",
"jest-vue-preprocessor": "^1.4.0",
"rollup": "^0.62.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-vue": "^4.3.0",
"tslib": "^1.11.1",
"tslint": "^6.1.1",
"tslint-ionic-rules": "^0.0.21",
"typescript": "^3.8.3"
},
"peerDependencies": {
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vue-router": "^3.1.6",
"@ionic/core": "^5.0.7"
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "test-report.xml",
"indent": 4
}
}