-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
140 lines (140 loc) · 5.14 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@fmfe/fm-vue-ui",
"version": "2.1.8",
"description": "Basic Vue Components for FM",
"main": "lib/fm-vue-ui.common.js",
"author": "fmfe",
"license": "MIT",
"private": false,
"files": [
"lib",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "[email protected]:fmfe/fm-vue-ui.git"
},
"bugs": {
"url": "https://github.com/fmfe/fm-vue-ui/issues"
},
"homepage": "https://fmfe.github.io/fm-vue-ui/index",
"style": "lib/theme-default/index.css",
"scripts": {
"prepush": "npm run lint -q",
"com": "npm run build:entry & npm run build:theme",
"dev:docs": "npx cross-env NODE_ENV=development node ./build/dev-server.js",
"build:docs": "npx cross-env NODE_ENV=production npx webpack --config ./build/webpack.prod.config.js --progress --hide-modules && mv ./docs/dist/index.html ./docs/",
"build:entry": "node build/bin/build-entry.js",
"build:locale": "node build/bin/build-locale.js",
"build:mixins": "node build/bin/build-mixins.js",
"build:utils": "node build/bin/build-utils.js",
"build:theme": "node build/bin/build-theme.js && npx gulp build --gulpfile theme-default/gulpfile.js",
"build:package": "npx cross-env NODE_ENV=production npx webpack --config ./build/webpack.package.config.js --progress --hide-modules",
"build:components": "npx cross-env NODE_ENV=production npx webpack --config ./build/webpack.components.config.js --progress --hide-modules",
"prepublishOnly": "rm -rf lib && npm run build:entry && npm run build:locale && npm run build:theme && npm run build:mixins && npm run build:utils && npm run build:components && npm run build:package",
"test:publish": "rm -rf lib && npm run build:entry && npm run build:locale && npm run build:theme && npm run build:mixins && npm run build:utils && npm run build:components && npm run build:package",
"lint": "npm run lint:vue & npm run lint:style",
"lint:vue": "npx eslint --ext .vue,.js src/**/*.js components/**/*.vue",
"lint:style": "npx stylelint \"{site,components}/**/*.less\" --syntax less",
"fix": "npm run fix:vue & npm run fix:style",
"fix:vue": "npx eslint --ext .vue,.js --fix src/**/*.js components/**/*.vue",
"fix:style": "npx stylelint --fix \"{site,components}/**/*.less\" --syntax less",
"test": "npx karma start test/karma.conf.js --single-run",
"commitmsg": "npx commitlint -e"
},
"dependencies": {
"natives": "^1.1.6",
"tiny-dom-helpers": "^1.2.4"
},
"peerDependencies": {
"vue": ">= 2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^6.0.2",
"@commitlint/config-angular": "^6.0.2",
"autoprefixer": "^7.1.5",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-replace-import-path": "^0.5.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.17",
"compression-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.1.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.8.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"gh-pages": "^2.0.1",
"github-markdown-css": "^2.9.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-cssmin": "^0.2.0",
"gulp-less": "^3.3.2",
"gulp-util": "^3.0.8",
"happypack": "^4.0.0",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"json-templater": "^1.1.0",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.5",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"markdown-it": "^8.4.0",
"markdown-it-anchor": "^4.0.0",
"markdown-it-container": "^2.0.0",
"mocha": "^4.0.1",
"normalize.css": "^7.0.0",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.3.0",
"postcss-loader": "^2.0.6",
"precss": "^2.0.0",
"rimraf": "^2.6.2",
"strip-tags": "^0.1.1",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"transliteration": "^1.6.2",
"uppercamelcase": "^3.0.0",
"url-loader": "^0.6.2",
"vue": "^2.5.8",
"vue-i18n": "^7.3.2",
"vue-loader": "^13.5.0",
"vue-markdown-loader": "^2.2.2",
"vue-router": "^3.0.1",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.8",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.1",
"webpack-md5-hash": "^0.0.5",
"webpack-node-externals": "^1.6.0",
"webpack-parallel-uglify-plugin": "^1.0.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}