-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 850 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
{
"name": "vue-template-compiler-on-browser",
"version": "0.0.1",
"description": "make vue-template-compiler library run on browser",
"main": "dist/vtc.js",
"scripts": {
"build:browser": "webpack && cp dist/vtc.js examples/browser",
"build:node": "webpack && cp dist/vtc.js examples/node/ && node examples/node/example.js"
},
"keywords": [
"vue",
"vue template compiler",
"browser",
"sfc"
],
"author": "pksjce",
"license": "ISC",
"dependencies": {
"de-indent": "^1.0.2",
"he": "^1.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^3.9.1",
"eslint-loader": "^1.6.1",
"lodash": "^4.16.6",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
}
}