This repository has been archived by the owner on Sep 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
{
"name": "@micro-app/plugin-webpack-adapter",
"version": "0.1.1",
"description": "[Plugin] webpack adapter plugin.",
"main": "src/index.js",
"bin": {
"micro-app-build": "./bin/micro-app-build"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"files": [
"bin",
"src"
],
"homepage": "https://github.com/MicroAppJS/MicroApp-Plugin-Webpack-Adapter",
"repository": {
"type": "git",
"url": "git+https://github.com/MicroAppJS/MicroApp-Plugin-Webpack-Adapter.git"
},
"bugs": {
"url": "https://github.com/MicroAppJS/MicroApp-Plugin-Webpack-Adapter/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.2.0",
"@micro-app/core": ">=0.2.0"
},
"devDependencies": {
"@micro-app/cli": "^0.2.0",
"@micro-app/core": "^0.2.0",
"@types/jest": "^24.0.19",
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-2o3t": "^1.1.17",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"webpack": "^4.41.1"
},
"dependencies": {
"cli-highlight": "^2.1.1",
"webpack-chain": "^6.0.0",
"webpack-merge": "^4.2.2"
}
}