This repository has been archived by the owner on Jun 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "vue-heroicons",
"version": "0.9.4",
"private": false,
"description": "Free 104 premium SVG icons for your Vue.js project",
"main": "dist/vue-heroicons.common.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --target lib --name vue-heroicons ./src/components/index.js",
"build:docs": "vue-cli-service build --mode production --dest docs",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"core-js": "^3.4.3",
"prismjs": "^1.17.1",
"tailwindcss": "^1.1.4",
"@fullhuman/postcss-purgecss": "^2.2.0",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.1",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "1.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^9.4.3",
"sass": "^1.24.0",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10"
},
"keywords": [
"vue",
"vuejs",
"vue-components",
"icons"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kholid060/vue-heroicons"
},
"bugs": {
"url": "https://github.com/kholid060/vue-heroicons/issues"
},
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}