-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "v-sanitize",
"version": "0.0.14",
"description": "Whitelist-based HTML sanitizer for Vue.js apps.",
"homepage": "https://github.com/chantouchsek/v-sanitize",
"main": "dist/sanitize.js",
"types": "dist/sanitize.d.ts",
"scripts": {
"build": "rimraf dist && npx tsc",
"release": "standard-version && git push --follow-tags origin main && yarn npm publish",
"prepublish": "yarn build"
},
"files": [
"dist",
"nuxt"
],
"keywords": [
"vue-sanitize",
"v-sanitize",
"vue",
"vue-plugin",
"sanitize"
],
"repository": {
"type": "git",
"url": "https://github.com/chantouchsek/v-sanitize.git"
},
"author": {
"email": "chantouchsek.cs83@gmail.com",
"name": "Chantouch Sek",
"url": "https://chantouch.me"
},
"contributors": [
{
"name": "Patrik Jánosdeák",
"url": "https://github.com/truesteps"
},
{
"name": "lsimone",
"url": "https://github.com/lsimone"
}
],
"license": "MIT",
"dependencies": {
"lodash.mergewith": "^4.6.2",
"sanitize-html": "~2.6.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@nuxt/types": "^2.15.8",
"@types/node": "^20.4.0",
"@types/sanitize-html": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2017-object-entries": "^0.0.5",
"babel-preset-minify": "^0.5.1",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.18.1",
"nuxt": "^2.15.8",
"prettier": "^2.4.1",
"rimraf": "^5.0.1",
"standard-version": "^9.3.1",
"typescript": "^5.1.3",
"vue": "^2.6.14",
"vuex": "^3.6.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.5.0"
}