-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "@lsky/tools",
"version": "1.0.6",
"main": "lib/index.js",
"repository": "git@github.com:lsky-walt/tools.git",
"author": "lsky_walt <lsky_walt@163.com>",
"license": "MIT",
"scripts": {
"build-dist": "webpack --config ./webpack/dist.js",
"build-lib": "cross-env NODE_ENV=publish babel src --out-dir lib",
"build": "./build.sh",
"pub": "npm run build && npm publish --access public"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"lib",
"dist"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.3.2",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.17.7"
}
}