-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 855 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 855 Bytes
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
{
"name": "vue-web-compiler",
"version": "0.5.0",
"description": "Vue.js template compiler playground",
"main": "src/index.js",
"author": "Marcos Neves <marcos.neves@gmail.com> (https://medium.com/vuejs-tips)",
"license": "MIT",
"keywords": [
"vue",
"compiler",
"template",
"playground"
],
"scripts": {
"start": "vue build src/index.js --config config.js",
"compile": "yarn build -- --disable-compress",
"build": "vue build src/index.js --config config.js --webpack webpack.config.js --dist ./docs/ --prod",
"deploy": "npm version minor; yarn build",
"serve": "open 'http://localhost:3000/'; serve ./docs/",
"upgrade:check": "ncu",
"upgrade:apply": "ncu -a"
},
"devDependencies": {
"html-webpack-inline-source-plugin": "^0.0.8"
},
"dependencies": {
"clipboard": "^1.6.1"
}
}