forked from yfsoftcom/weapp-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 920 Bytes
/
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
{
"name": "weapp-adapter",
"version": "0.0.1",
"description": "Adapter for WeChat Mini Program",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "webpack --config build/webpack.config.js --watch",
"build": "webpack --hide-modules --config build/webpack.config.js",
"test": "jest",
"lint": "eslint ."
},
"author": "Xiande Wen <xiandepaul.wen@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.27.0",
"eslint-webpack-plugin": "^2.5.4",
"eventemitter2": "^4.1.2",
"jest": "^27.0.3",
"path": "^0.12.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"core-js": "^3.13.1"
}
}