This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
forked from marcincichocki/vue-image-compare
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "vue-image-compare",
"version": "0.6.1",
"description": "Compare two images via slider using vue.js",
"homepage": "https://github.com/marcincichocki/vue-image-compare",
"bugs": "https://github.com/marcincichocki/vue-image-compare/issues",
"main": "dist/vue-image-compare.js",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack",
"build:prod": "NODE_ENV=prod webpack",
"dev": "npm run build:dev -- --watch",
"clean": "npm run clean:dist && npm run clean:vendor",
"clean:dist": "rimraf dist/",
"clean:vendor": "rimraf node_modules/"
},
"repository": {
"type": "git",
"url": "https://github.com/marcincichocki/vue-image-compare.git"
},
"keywords": [
"vue",
"image",
"compare",
"comparison",
"slider",
"component"
],
"author": "Marcin Cichocki <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.5.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"css-loader": "^0.25.0",
"node-sass": "^3.10.1",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.1.10",
"vue-style-loader": "^1.0.0",
"webpack": "^2.7.0"
},
"peerDependencies": {
"vue": "^2.0.0"
}
}