-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "bekit",
"version": "0.1.5",
"description": "common kits for fe",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"init": "npm i --no-save && cd examples && npm i --no-save",
"watch": "webpack --config ./build/webpack.dev.js -w ",
"build": "webpack --config ./build/webpack.dev.js && webpack --config ./build/webpack.pro.js",
"example": "cd examples && npm start",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./script/deploy-docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luzimingx/bekit.git"
},
"author": "ether",
"homepage": "https://github.com/luzimingx/bekit",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@types/lodash": "^4.14.138",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^3.0.0",
"lodash-webpack-plugin": "^0.11.5",
"ts-loader": "^6.0.4",
"tslint": "^5.20.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.2",
"vuepress": "^1.4.1",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"lodash": "^4.17.15"
},
"browserslist": [
"defaults",
"not ie < 10",
"last 2 versions",
"> 1%",
"iOS 8",
"last 4 iOS versions"
]
}