-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ycloud-excel",
"version": "1.0.0",
"description": "基于js-xlsx的excel导入导出",
"main": "index.js",
"files": [
"dist",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:umd",
"build:umd": "webpack --progress --colors --config config/webpack.prod.config.js",
"dev": "webpack-dev-server --port 9093 --open --config config/webpack.dev.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovezjj008/ycloud-excel.git"
},
"keywords": [
"excel"
],
"author": "zjj",
"license": "ISC",
"bugs": {
"url": "https://github.com/lovezjj008/ycloud-excel/issues"
},
"devDependencies": {
"autoprefixer": "^7.1.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.5",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"postcss-loader": "^2.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "1.0.0-beta.1",
"webpack": "^3.5.5",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dashboard": "^1.0.0-5",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0",
"xlsx": "^0.12.10"
},
"dependencies": {
"file-saver": "^1.3.8",
"knockout": "^3.4.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}