-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
87 lines (87 loc) · 2.93 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "lantern-ui",
"version": "1.0.58",
"description": "lantern-ui——基于 Vue.js 的前端 UI 库 https://lantern-ui.netlify.com/",
"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",
"builddocs": "webpack --hide-modules --config ./build/webpack.build.docs.conf.js && cp -r ./examples/assets/. docs/",
"generateIconNameList": "node ./examples/common/generateIconNameList",
"cleanlib": "rimraf lib/*",
"cleandist": "rimraf dist/*",
"deploy": "npm version patch && npm run build && npm publish --registry https://registry.npmjs.org",
"eslint": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js, vue}": "eslint",
"packages/**/*.{js, vue}": "eslint",
"examples/**/*.{js, vue}": "eslint"
},
"repository": "git+https://github.com/ssfe-team/lantern.git",
"keywords": [
"ssfe",
"vue",
"components"
],
"author": "ssfe",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssfe-team/lantern/issues"
},
"homepage": "https://github.com/ssfe-team/lantern#readme",
"dependencies": {
"async-validator": "^1.11.2",
"lodash.throttle": "^4.1.1",
"popper.js": "^1.14.5",
"rimraf": "^3.0.0",
"v-click-outside-x": "^3.5.5",
"vue": "^2.5.17"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"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": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"highlight.js": "^9.13.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^1.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.0",
"markdown-it": "^8.4.2",
"markdown-it-container": "^2.0.0",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"vue-loader": "^13.7.3",
"vue-router": "^3.0.1",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.17",
"webpack": "3.8.0",
"webpack-dev-server": "2.9.7",
"webpack-merge": "^4.1.4"
}
}