forked from PygmySlowLoris/vue-ripple-directive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "vue-ripple-directive",
"version": "2.0.1",
"description": "Vue Material Ripple Effect Directive",
"main": "src/ripple.js",
"repository": {
"type": "git",
"url": "https://github.com/PygmySlowLoris/vue-ripple-directive"
},
"keywords": [
"vue",
"ripple",
"material",
"directive",
"ripple effect",
"button"
],
"author": {
"name": "PygmySlowLoris Team",
"email": "[email protected]",
"url": "https://github.com/PygmySlowLoris"
},
"contributors": [
"Guido Ceraso <[email protected]> (https://github.com/hazzo)",
"Eduardo Marcos <[email protected]> (https://github.com/Edujugon)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PygmySlowLoris/vue-ripple-directive/issues"
},
"homepage": "https://github.com/PygmySlowLoris/vue-ripple-directive#readme",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"prepublish": "npm run build"
},
"dependencies": {
"vue": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"url-loader": "^0.5.8",
"vue-loader": "^11.1.4",
"vue-template-compiler": "^2.2.1",
"webpack": "^2.2.0",
"webpack-dev-server": "^3.1.11"
}
}