forked from Justineo/vue-octicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "vue-octicon",
"version": "2.1.1",
"description": "Octicon component for Vue.js, using inline SVG.",
"main": "dist/vue-octicon.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"icons": "node build/icons.js",
"prepublish": "npm run icons && npm run build && cp -r ./src/* . && rm index.js",
"publish": "rm -rf ./components && rm -rf ./icons && rm util.js"
},
"keywords": [
"Octicon",
"Vue.js"
],
"author": "Justineo ([email protected])",
"license": "MIT",
"dependencies": {
"vue": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"cross-env": "^3.1.1",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"octicons": "^8.5.0",
"vue-loader": "^9.5.1",
"webpack": "2.1.0-beta.22",
"webpack-dev-server": "^2.1.0-beta.8",
"webpack-merge": "^0.14.1"
}
}