-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
35 lines (35 loc) · 959 Bytes
/
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
{
"name": "vue-customelement-bundler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build",
"build": "rimraf dist && cross-env NODE_ENV=production webpack",
"dev": "webpack --watch"
},
"author": "",
"license": "MIT",
"repository" :
{
"type" : "git",
"url" : "https://github.com/kartsims/vue-customelement-bundler.git"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"cross-env": "^4.0.0",
"css-loader": "^0.26.2",
"file-loader": "^0.11.1",
"rimraf": "^2.6.1",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony",
"vue": "^2.2.6",
"vue-custom-element": "^1.0.13",
"vue-loader": "^11.3.4",
"vue-style-loader": "^2.0.5",
"vue-template-compiler": "^2.2.6",
"webpack": "^2.3.3"
}
}