-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "vue-html",
"version": "1.0.0",
"description": "Use tagged template string in Vue.js render function",
"license": "MIT",
"repository": "egoist/vue-html",
"author": {
"name": "EGOIST",
"email": "[email protected]",
"url": "http://github.com/egoist"
},
"scripts": {
"test": "npm run lint && npm run test:unit",
"test:unit": "poi puppet --test --plugin @poi/puppet --framework mocha",
"lint": "xo",
"build": "bili --format umd,cjs,es,es-min,umd-min --js buble --module-name HTML --inline --name html",
"example": "poi -so --config example/poi.config.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
],
"envs": [
"browser",
"mocha"
],
"rules": {
"unicorn/filename-case": "off",
"no-new": "off"
}
},
"main": "dist/html.js",
"module": "dist/html.es.js",
"keywords": [
"vue",
"htm",
"html"
],
"devDependencies": {
"@poi/plugin-puppet": "^0.1.3",
"babel-preset-power-assert": "^3.0.0",
"bili": "^3.4.2",
"eslint-config-prettier": "^3.3.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"htm": "^2.0.0",
"poi": "^12.2.4",
"power-assert": "^1.6.1",
"prettier": "^1.15.3",
"vue": "^2.5.21",
"xo": "^0.23.0"
}
}