forked from single-spa/single-spa-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "single-spa-vue",
"version": "1.5.4",
"description": "a single-spa plugin for vue.js applications",
"main": "lib/single-spa-vue.js",
"scripts": {
"prepublishOnly": "yarn build",
"build": "rimraf lib && babel src --out-dir lib --source-maps --ignore '**/*.test.js'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blittle/single-spa-vuejs.git"
},
"files": [
"lib",
"src",
"types"
],
"types": "types/single-spa-vue.d.ts",
"keywords": [
"single-spa",
"vuejs",
"single",
"page",
"app",
"spa"
],
"author": "Canopy",
"license": "MIT",
"bugs": {
"url": "https://github.com/blittle/single-spa-vuejs/issues"
},
"homepage": "https://github.com/blittle/single-spa-vuejs#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.15",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"rimraf": "^2.6.3"
}
}