-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "shareto",
"version": "1.0.0",
"description": "封装社交网络分享插件",
"main": "dist/index.js",
"scripts": {
"build": "npx babel index.js --out-dir dist && npm run minify && npm run deploy",
"minify": "npx minify dist/index.js --mangle.keepClassName --deadcode.keepFnArgs --outFile dist/index.min.js",
"deploy": "npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:oikewll/shareto.git"
},
"homepage": "https://github.com/oikewll/shareto/blob/master/README.md",
"keywords": [
"weixin",
"tencent",
"weibo",
"share"
],
"author": "Hoanliu",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"weixin-js-sdk": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-es2015": "^7.0.0-beta.53",
"babel-minify": "^0.5.1",
"babel-preset-stage-0": "^6.24.1"
}
}