-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.16 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
{
"name": "vue-ripplify",
"version": "2.1.0",
"description": "A configurable directive-based Ripple effect for Vue",
"main": "dist/vue-ripplify.umd.js",
"module": "src/vue-ripplify.js",
"unpkg": "dist/vue-ripplify.min.js",
"scripts": {
"build": "npm run build:umd & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-ripplify.umd.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-ripplify.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angelov-a/vue-ripplify.git"
},
"keywords": [
"vue",
"material design",
"ripple",
"directive"
],
"author": "Alexander Angelov <angelov.alex.npm@gmail.com> (https://github.com/angelov-a)",
"license": "MIT",
"bugs": {
"url": "https://github.com/angelov-a/vue-ripplify/issues"
},
"homepage": "https://github.com/angelov-a/vue-ripplify#readme",
"devDependencies": {
"autoprefixer": "^9.3.1",
"rollup": "^0.67.3",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-terser": "^3.0.0"
}
}