-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "vue-sanitize-directive",
"version": "0.2.1",
"description": "Vue directive for HTML sanitization.",
"author": {
"name": "Leonardo Piccioni de Almeida",
"email": "[email protected]"
},
"keywords": [
"vue",
"sanitization",
"sanitize",
"v-sanitize"
],
"main": "dist/vue-sanitize-directive.umd.js",
"module": "dist/vue-sanitize-directive.esm.js",
"exports": {
".": {
"import": "./dist/vue-sanitize-directive.esm.js",
"require": "./dist/vue-sanitize-directive.umd.js"
}
},
"scripts": {
"build": "vite build"
},
"license": "MIT",
"dependencies": {
"sanitize-html": "^2.7.1"
},
"devDependencies": {
"vite": "^3.0.4"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leopiccionia/vue-sanitize-directive.git"
},
"bugs": {
"url": "https://github.com/leopiccionia/vue-sanitize-directive/issues"
},
"homepage": "https://leopiccionia.github.io/vue-sanitize-directive"
}