-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
88 lines (88 loc) · 2.25 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
87
88
{
"name": "single-spa-vue",
"version": "3.0.0",
"description": "a single-spa plugin for vue.js applications",
"main": "dist/umd/single-spa-vue.js",
"module": "dist/esm/single-spa-vue.js",
"exports": {
".": {
"types": "./types/single-spa-vue.d.ts",
"import": "./dist/esm/single-spa-vue.js",
"require": "./dist/umd/single-spa-vue.js"
},
"./parcel": {
"import": "./dist/esm/parcel.js",
"require": "./dist/umd/parcel.js"
}
},
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "rimraf dist && rollup -c",
"build:watch": "rollup -cw",
"test": "concurrently -n w: 'pnpm:test:*'",
"test:jest": "cross-env BABEL_ENV=test jest",
"test:types": "tsd",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint src",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/single-spa-vue.git"
},
"files": [
"dist",
"types"
],
"types": "types/single-spa-vue.d.ts",
"keywords": [
"single-spa",
"vue",
"single",
"page",
"app",
"spa"
],
"author": "single-spa core team",
"license": "MIT",
"bugs": {
"url": "https://github.com/single-spa/single-spa-vue/issues"
},
"homepage": "https://github.com/single-spa/single-spa-vue#readme",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.2",
"@vue/test-utils": "^1.1.1",
"babel-jest": "^29.5.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.2",
"css.escape": "^1.5.1",
"eslint": "^8.43.0",
"eslint-config-important-stuff": "^1.1.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"rollup": "^3.25.3",
"single-spa": "^5.9.5",
"tsd": "^0.28.1",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"tsd": {
"compilerOptions": {
"lib": [
"dom"
]
}
}
}