forked from DCzajkowski/vue-emoji-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.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
{
"name": "vue-emoji-picker",
"description": "Simple Vue.js emoji picker with unicode characters",
"version": "1.0.2",
"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-emoji-picker.css ] -e src/main.js | uglifyjs -c warnings=false -m > dist/vue-emoji-picker.js"
},
"browserify": {
"transform": [
"babelify",
"vueify"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
},
"repository": {
"url": "git+https://github.com/DCzajkowski/vue-emoji-picker.git",
"type": "git"
},
"keywords": [],
"author": "Dariusz Czajkowski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DCzajkowski/vue-emoji-picker/issues"
},
"homepage": "https://github.com/DCzajkowski/vue-emoji-picker#readme",
"typings": "src/@types",
"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"
}
}