-
Notifications
You must be signed in to change notification settings - Fork 206
/
package.json
71 lines (71 loc) · 2.12 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
{
"name": "vue-awesome",
"version": "4.5.0",
"description": "Font Awesome component for Vue.js, using inline SVG.",
"author": "Justineo ([email protected])",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run icons && cross-env NODE_ENV=production rollup -c",
"lint": "vue-cli-service lint",
"demo": "vue-cli-service build",
"fa2json": "node -r esm build/fa2json.js",
"icons": "npm run fa2json && node -r esm build/icons.js",
"prepublishOnly": "npm run build && mkdir components && cp src/components/Icon.js components/ && cp src/index.js index.js",
"postpublish": "rm -rf ./components ./icons index.js"
},
"main": "dist/vue-awesome.js",
"module": "index.js",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.1.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.1",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^8.2.0",
"esm": "^3.2.25",
"fa2svg": "^1.2.0",
"minimist": "^1.2.5",
"mkdirp": "^0.5.1",
"prettier": "^2.0.5",
"prettier-eslint": "^8.2.2",
"rimraf": "^2.7.1",
"rollup": "^2.22.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-vue": "^5.1.9",
"semver": "^5.7.1",
"stringify-object": "^3.3.0",
"svgfont2glyphs": "^0.1.4",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.4.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"keywords": [
"Font Awesome",
"Vue.js"
],
"license": "MIT",
"repository": "Justineo/vue-awesome"
}