-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.26 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
{
"name": "@micro-app/plugin-webpack",
"version": "0.0.2",
"description": "[Plugin] webpack adapter plugin.",
"main": "src/index.js",
"bin": {
"micro-app-build": "./bin/micro-app-build"
},
"scripts": {
"prepublishOnly": "npm run test",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"build": "micro-app build",
"dev": "micro-app-dev",
"inspect": "micro-app inspect",
"publish:next": "npm publish --tag next",
"release": "micro-app release",
"release:alpha": "npm run release -- --preRelease=alpha",
"release:next": "npm run release -- --preRelease=next"
},
"files": [
"bin",
"src"
],
"homepage": "https://github.com/MicroAppJS/plugin-webpack",
"repository": {
"type": "git",
"url": "git+https://github.com/MicroAppJS/plugin-webpack.git"
},
"bugs": {
"url": "https://github.com/MicroAppJS/plugin-webpack/issues"
},
"keywords": [
"micro",
"micro-app",
"micro-application",
"plugin",
"webpack-adapter",
"adapter",
"webpack"
],
"author": {
"name": "Zyao89",
"email": "[email protected]"
},
"license": "MIT",
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"peerDependencies": {
"@micro-app/cli": ">=0.3.1"
},
"devDependencies": {
"@micro-app/cli": "^0.3.1",
"@micro-app/plugin-compatible": "0.0.2",
"@micro-app/plugin-deploy": "^0.0.4",
"@types/jest": "^24.9.1",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-2o3t": "^1.1.17",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"webpack": "^4.41.1",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@micro-app/shared-utils": "^0.1.15",
"address": "^1.1.2",
"cli-highlight": "^2.1.4",
"clipboardy": "^2.2.0",
"default-gateway": "^5.0.5",
"launch-editor-middleware": "^2.2.1",
"portfinder": "^1.0.25",
"webpack-chain": "^6.4.0"
}
}