-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
37 lines (37 loc) · 1016 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
36
37
{
"name": "v-runtime-template",
"version": "1.10.0",
"description": "Create Vue components by compiling templates on the fly",
"main": "dist/v-runtime-template.umd.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "microbundle index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexjoverm/v-runtime-template.git"
},
"keywords": [
"vuejs",
"dynamic",
"runtime",
"template"
],
"author": {
"name": "Alex J",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"microbundle": "^0.11.0"
},
"bugs": {
"url": "https://github.com/alexjoverm/v-runtime-template/issues"
},
"homepage": "https://github.com/alexjoverm/v-runtime-template#readme",
"module": "dist/v-runtime-template.es.js",
"unpkg": "dist/v-runtime-template.umd.js",
"browser": "dist/v-runtime-template.es.js",
"types": "v-runtime-template.d.ts"
}