-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
134 lines (134 loc) · 3.8 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
{
"name": "vue-feather",
"version": "1.1.1",
"description": "Feather component for Vue.js.",
"main": "dist/vue-feather.common.js",
"module": "dist/vue-feather.esm.js",
"browser": "dist/vue-feather.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build:docs": "webpack --mode production",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clear": "del-cli dist",
"clear:docs": "del-cli docs",
"compress": "uglifyjs dist/vue-feather.min.js -o dist/vue-feather.min.js -c -m --comments /^!/",
"deploy": "npm run clear:docs && npm run build:docs",
"dev": "webpack-dev-server --mode development --host 0.0.0.0 --useLocalIp --hot --open --overlay",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint {src,site}/**/*.{css,scss,html,vue,md} --fix",
"lint:js": "eslint src test --ext .js,.vue --fix",
"prebuild": "npm run clear",
"release": "npm run lint && npm run build && npm run compress && npm run deploy && npm test && npm run changelog",
"start": "npm run dev",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git https://github.com/fengyuanchen/vue-feather.git"
},
"keywords": [
"icons",
"feather",
"feather-icons",
"vue-component",
"component",
"vue",
"vue.js",
"front-end",
"web"
],
"author": {
"name": "Chen Fengyuan",
"url": "https://chenfengyuan.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fengyuanchen/vue-feather/issues"
},
"homepage": "https://fengyuanchen.github.io/vue-feather",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-loader": "^8.2.1",
"chai": "^4.2.0",
"change-case": "^4.1.1",
"conventional-changelog-cli": "^2.1.1",
"create-banner": "^1.0.0",
"css-loader": "^3.6.0",
"del-cli": "^3.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.1.0",
"feather-icons": "^4.24.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"lint-staged": "^10.5.1",
"markdown-to-vue-loader": "^2.0.0",
"mocha": "^8.2.1",
"puppeteer": "^5.4.1",
"rollup": "^2.33.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^5.1.9",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"uglify-js": "^3.11.5",
"vue": "^2.6.12",
"vue-loader": "^15.9.5",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"feather-icons": "^4.0.0",
"vue": "^2.0.0"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not ie <= 8"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{src,test}/**/*.js|*.conf*.js": [
"eslint --fix",
"git add"
],
"{src,site}/**/*.{css,scss,html,vue,md}": [
"stylelint --fix",
"git add"
]
}
}