-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 KB
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
{
"name": "vue-info-box",
"version": "0.9.5",
"description": "A simple component for vuejs 2.0 to display different types of info boxes",
"main": "./dist/vue-info-box.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ainzz/vue-info-box.git"
},
"keywords": [
"vuejs",
"vue",
"info",
"box",
"component"
],
"author": "Alin Stefan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ainzz/vue-info-box/issues"
},
"homepage": "https://github.com/ainzz/vue-info-box#readme",
"peerDependencies": {
"vue": "2.x.x",
"font-awesome": "4.x.x"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --progress --watch",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"prepare": "npm run build"
},
"files": [
"dist/vue-info-box.js"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"vue-loader": "^13.3.0",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.8.1"
}
}