-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "@soubai/web-merge",
"version": "1.2.8",
"description": "Declarative custom element for micro-frontend architecture",
"main": "dist/main.js",
"module": "dist/main.js",
"author": "Abderrahim SOUBAI-ELIDRISI",
"license": "MIT",
"private": false,
"keywords": [
"web component",
"fragment",
"micro-frontend"
],
"homepage": "https://github.com/AbderrahimSoubaiElidrissi/web-merge",
"bugs": {
"url": "https://github.com/AbderrahimSoubaiElidrissi/web-merge/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AbderrahimSoubaiElidrissi/web-merge.git"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"generate-changelog": "^1.8.0",
"prettier": "^2.1.2",
"prettier-webpack-plugin": "^1.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"dev": "webpack-dev-server",
"build": "rm -rf ./dist && webpack",
"test": "echo \"Error: no test specified\" && exit 0",
"changelog": "generate-changelog",
"pretty": "prettier --write 'lib/*.js'"
}
}