-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.62 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
{
"name": "ilc-adapter-vue",
"version": "1.9.2",
"description": "Adapter for Vue.js Micro Frontends that are run inside ILC",
"main": "lib/single-spa-vue.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf lib && rollup -c",
"test": "jest",
"prettier": "prettier --write './**'",
"lint": "eslint src"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently -n npm:test npm:lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/namecheap/ilc-adapter-vue.git"
},
"files": [
"lib",
"src",
"types"
],
"types": "types/single-spa-vue.d.ts",
"keywords": [
"single-spa",
"vue",
"single",
"page",
"app",
"spa"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/namecheap/ilc-adapter-vue/issues"
},
"homepage": "https://github.com/namecheap/ilc-adapter-vue#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.1.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"concurrently": "^5.1.0",
"css.escape": "^1.5.1",
"eslint": "^6.8.0",
"eslint-config-important-stuff": "^1.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0"
}
}