forked from ssfe-team/lantern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.95 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
{
"name": "lantern-ui",
"version": "0.10.46",
"description": "Lantern-ui——基于Vue.js的前端UI库",
"main": "lib/lantern.js",
"scripts": {
"lanterninit": "yarn || npm install",
"dev": "cross-env webpack-dev-server --open --hot --inline --host --port 8010 --config ./build/webpack.dev.conf.js",
"build": "npm run cleanlib & npm run buildcss & npm run buildjs",
"buildcss": "webpack --progress --hide-modules --config ./build/webpack.build.css.conf.js",
"buildjs": "webpack --progress --hide-modules --config ./build/webpack.build.js.conf.js",
"buildex": "webpack --progress --hide-modules --config ./build/webpack.build.js.ex.js",
"cleanlib": "rimraf lib/*",
"cleandist": "rimraf dist/*",
"deploy": "npm version patch && npm run build && npm publish"
},
"repository": "git+https://github.com/ssfe-team/lantern.git",
"author": "ssfe",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssfe-team/lantern/issues"
},
"homepage": "https://github.com/ssfe-team/lantern#readme",
"dependencies": {
"popper.js": "^1.14.3",
"v-click-outside-x": "^3.0.1",
"vue": "^2.5.13"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.13.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^2.30.1",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"markdown-it": "^8.4.0",
"markdown-it-container": "^2.0.0",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"vue-loader": "^13.6.0",
"vue-router": "^3.0.1",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.1"
}
}