-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 949 Bytes
/
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
{
"name": "vue-sanitize",
"version": "0.2.3",
"description": "Whitelist-based HTML sanitizer for Vue.js apps.",
"homepage": "https://github.com/daichirata/vue-sanitize",
"main": "dist/vue-sanitize.js",
"jsnext:main": "index.js",
"scripts": {
"build": "rollup -c --name vue-sanitize --input index.js"
},
"keywords": [
"vue-sanitize",
"vue",
"vue-plugin",
"sanitize"
],
"repository": {
"type": "git",
"url": "https://github.com/daichirata/vue-sanitize.git"
},
"author": "Daichi HIRATA <[email protected]>",
"license": "MIT",
"dependencies": {
"sanitize-html": "~2.7.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"prettier": "^1.12.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0"
}
}