-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "vue-safe-html",
"version": "3.0.1",
"description": "A Vue directive which renders sanitised HTML dynamically",
"type": "module",
"main": "./dist/main.common.js",
"module": "./dist/main.esm.js",
"exports": {
".": {
"import": "./dist/main.esm.js",
"require": "./dist/main.common.js"
}
},
"repository": "[email protected]:ecosia/vue-safe-html.git",
"author": "Ecosia GmbH <[email protected]>",
"contributors": [
"Emanuele Marchi (https://github.com/LostCrew)",
"Jakub Fiala (https://github.com/jakubfiala)",
"Markus Waitl (https://github.com/axlwaii)"
],
"keywords": [
"vue",
"directive",
"safe",
"html",
"sanitize",
"strip"
],
"license": "SEE LICENSE IN 'LICENSE'",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test:unit": "jest --maxWorkers=1",
"test": "yarn test:unit",
"build": "webpack",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@vue/test-utils": "1.3.0",
"@vue/test-utils3": "npm:@vue/[email protected]",
"@babel/eslint-parser": "7.22.15",
"babel-jest": "27.5.1",
"babel-loader": "8.2.5",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-compat": "3.13.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-vue": "7.20.0",
"jest": "27.5.1",
"vue": "2.6.14",
"vue-template-compiler": "2.6.14",
"vue3": "npm:[email protected]",
"webpack": "5.76.0",
"webpack-cli": "4.9.2"
}
}