forked from single-spa/vue-cli-plugin-single-spa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.52 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.52 KB
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
{
"name": "vue-cli-plugin-single-spa",
"description": "A vue-cli plugin for single-spa applications and parcels",
"version": "4.0.0",
"scripts": {
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint . && ejslint ./template/src",
"prepare": "husky",
"clean": "rimraf tests/fixtures",
"test": "npm run clean && npm run test:vue2:systemjs && npm run test:vue2:esm && npm run test:vue3:systemjs && npm run test:vue3:esm",
"test:vue2:systemjs": "tests/testVue.sh 2 true",
"test:vue2:esm": "tests/testVue.sh 2 false",
"test:vue3:systemjs": "tests/testVue.sh 3 true",
"test:vue3:esm": "tests/testVue.sh 3 false"
},
"author": "Joel Denning",
"license": "MIT",
"homepage": "https://single-spa.js.org/docs/ecosystem-vue.html#vue-cli",
"repository": "https://github.com/single-spa/vue-cli-plugin-single-spa",
"bugs": "https://github.com/single-spa/vue-cli-plugin-single-spa/issues",
"dependencies": {
"semver": "^7.3.5",
"standalone-single-spa-webpack-plugin": "^5.0.0",
"systemjs-webpack-interop": "^2.3.7"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@vue/cli-service": "^5.0.8",
"ejs-lint": "^2.0.1",
"eslint": "^9.19.0",
"eslint-config-important-stuff": "^1.1.0",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1"
},
"peerDependencies": {
"webpack": "*"
}
}