forked from FortAwesome/vue-fontawesome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "@fortawesome/vue-fontawesome",
"description": "Official Vue component for Font Awesome 5",
"version": "0.0.22",
"main": "index.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
"homepage": "https://github.com/FortAwesome/vue-fontawesome",
"repository": {
"type": "git",
"url": "https://github.com/FortAwesome/vue-fontawesome.git"
},
"contributors": [
"Travis Chase <travis@fontawesome.com>",
"Rob Madole <rob@fontawesome.com>"
],
"license": "MIT",
"watch": {
"build.main": {
"patterns": ["src"],
"extensions": ["js"]
},
"build.example.webpack": {
"patterns": [
"example/webpack/src/**/*.js",
"example/webpack/src/**/*.vue",
"index.js"
],
"extensions": ["js", "vue"]
}
},
"scripts": {
"watch":
"concurrently --kill-others \"npm run watch.all\" \"npm run serve.static\"",
"watch.all": "npm-watch",
"build": "npm run build.main && npm run build.example.webpack",
"build.main": "rollup -c rollup.config.js",
"build.example.webpack": "cd example/webpack && webpack --hide-modules",
"serve.static":
"static -H '{\"Cache-Control\": \"no-cache, must-revalidate\"}' example/webpack",
"dist": "cross-env NODE_ENV=production npm run build",
"test": "jest",
"prepack": "yarn dist"
},
"peerDependencies": {
"@fortawesome/fontawesome": ">=1.1.0",
"vue": "^2.4.2"
},
"devDependencies": {
"@fortawesome/fontawesome": ">=1.0.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"concurrently": "^3.5.0",
"cross-env": "^5.1.1",
"humps": "^2.0.1",
"jest": "^21.0.1",
"node-static": "^0.7.10",
"npm-watch": "^0.3.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"vue": "^2.4.4"
},
"dependencies": {}
}