-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
116 lines (116 loc) · 3.98 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vue-universal-modal",
"version": "1.0.0",
"description": "A Vue.js universal modal component",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/vue-universal-modal.min.js",
"author": "Andrey vuNemesis <vuNemesis@gmail.com>",
"scripts": {
"dev": "node build/dev-server.js",
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es",
"build:demo": "node build/build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"init": "curl -u 'vuNemesis' https://api.github.com/user/repos -d '{\"name\":\"vue-universal-modal\"}'",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:commonjs:watch": "npm run build:commonjs -- --watch",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:es:watch": "npm run build:es -- --watch",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development node_modules/.bin/rollup src/index.js --config --sourcemap --output dist/vue-universal-modal.js",
"build:umd:watch": "npm run build:umd -- --watch",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup src/index.js --config --output dist/vue-universal-modal.min.js"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-cli": "^6.14.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-relative-paths": "^0.1.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"babel-standalone": "^6.26.0",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.1.3",
"css-loader": "^0.28.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.11.1",
"friendly-errors-webpack-plugin": "^1.1.3",
"fs-extended": "^0.2.1",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.17.3",
"js-beautify": "^1.7.5",
"node-sass": "^4.7.2",
"opn": "^4.0.2",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"ora": "^1.2.0",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^2.2.1",
"rimraf": "^2.6.0",
"rollup": "^0.35.15",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-collect-sass": "^1.0.9",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-postcss": "^1.2.8",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-scss": "^0.4.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^4.3.1",
"sass-loader": "^6.0.6",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony",
"uikit": "^3.0.0-beta.40",
"url-loader": "^0.5.8",
"vue": "^2.3.3",
"vue-functional-data-merge": "^2.0.4",
"vue-highlightjs": "^1.3.3",
"vue-loader": "^12.1.0",
"vue-router": "^2.3.1",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.3.3",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
},
"files": [
"dist",
"lib",
"es",
"src"
],
"repository": {
"type": "git",
"url": "git://github.com/vuNemesis/vue-universal-modal.git"
},
"bugs": {
"url": "https://github.com/vuNemesis/vue-universal-modal/issues"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"homepage": "https://github.com/vuNemesis/vue-universal-modal",
"keywords": [
"vue",
"vue.js",
"modal",
"component"
],
"license": "MIT"
}