forked from alexjoverm/v-runtime-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "@elisiondesign/v-runtime-template",
"version": "1.6.3",
"description": "Create Vue components by compiling templates on the fly",
"main": "dist/elisiondesign-v-runtime-template.cjs.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollit index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elisiondesign/v-runtime-template.git"
},
"keywords": [
"vuejs",
"dynamic",
"runtime",
"template"
],
"author": {
"name": "elision.design",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"hoek": "^5.0.3",
"rollit": "0.0.9"
},
"bugs": {
"url": "https://github.com/elisiondesign/v-runtime-template/issues"
},
"homepage": "https://github.com/elisiondesign/v-runtime-template#readme",
"module": "dist/elisiondesign-v-runtime-template.es.js",
"unpkg": "dist/elisiondesign-v-runtime-template.js",
"browser": "dist/elisiondesign-v-runtime-template.es.js"
}