-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 KB
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
{
"name": "@mpflow/service",
"version": "1.0.0-alpha.2",
"description": "> TODO: description",
"author": "chyizheng <[email protected]>",
"homepage": "",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"mpflow-service": "bin/mpflow-service.js"
},
"directories": {
"bin": "bin",
"lib": "lib",
"test": "__tests__"
},
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:wechat-miniprogram/mpflow.git"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "node ../../scripts/build",
"build-js": "node ../../scripts/build-js",
"build-ts": "node ../../scripts/build-ts",
"test": "jest . --config ../../jest.config.js",
"test-debug": "node --inspect-brk ../../node_modules/.bin/jest --config ./example/webpack.config.js --runInBand"
},
"dependencies": {
"@mpflow/service-core": "workspace:*",
"@mpflow/webpack-plugin": "workspace:*",
"@mpflow/wxml-loader": "workspace:*",
"@mpflow/wxss-loader": "workspace:*",
"chalk": "^4.1.2",
"check-node-version": "^4.2.1",
"clean-webpack-plugin": "^3.0.0",
"cli-highlight": "^2.1.11",
"copy-webpack-plugin": "^6.4.1",
"deepmerge": "^4.3.1",
"file-loader": "^6.2.0",
"json-loader": "^0.5.7",
"mkdirp": "^0.5.6",
"url-loader": "^4.1.1",
"webpack": "^4.47.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-chain": "^6.5.1",
"webpack-merge": "^5.10.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"@types/tapable": "^1.0.12",
"@types/webpack": "^4.41.39",
"@types/yargs": "^15.0.19"
}
}