forked from DCzajkowski/vue-pure-lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.03 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "vue-pure-lightbox",
"version": "2.1.8",
"description": "Very lightweight, JavaScript-only, lightbox plugin for Vue.js",
"main": "dist-module/main.js",
"scripts": {
"prepublish": "npm run build && npm run browser-build",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"browser-build": "cross-env NODE_ENV=production browserify -g envify -p [ vueify/plugins/extract-css -o dist/vue-pure-lightbox.css ] -e src/main.js | uglifyjs -c warnings=false -m > dist/vue-pure-lightbox.js"
},
"browserify": {
"transform": [
"babelify",
"vueify"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DCzajkowski/vue-pure-lightbox.git"
},
"keywords": [
"vue",
"vue.js",
"lightbox"
],
"author": "Dariusz Czajkowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/DCzajkowski/vue-pure-lightbox/issues"
},
"homepage": "https://github.com/DCzajkowski/vue-pure-lightbox#readme",
"dependencies": {
"vue": "^2.3.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^6.0.0",
"babelify": "^7.2.0",
"browserify": "^14.4.0",
"browserify-hmr": "^0.3.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"envify": "^3.4.1",
"file-loader": "^0.9.0",
"http-server": "^0.11.1",
"node-sass": "^4.5.0",
"npm-run-all": "^2.3.0",
"phantomjs-prebuilt": "^2.1.3",
"proxyquireify": "^3.0.1",
"sass-loader": "^5.0.1",
"uglify-js": "^2.5.0",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.6.7",
"vueify": "^9.4.1",
"watchify": "^3.11.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^3.2.0"
}
}