-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
{
"name": "datocms-plugin-sanitize-richtext",
"homepage": "https://github.com/SYMBIO/datocms-plugin-sanitize-richtext",
"version": "0.1.3",
"description": "Remove styles copied from MS Word and others",
"main": "public/bundle.js",
"scripts": {
"start": "concurrently \"yarn dev\" \"yarn localtunnel\"",
"localtunnel": "lt -s datocms-plugin-datocms-plugin-sanitize-richtext --port 5000",
"dev": "NODE_ENV=development webpack-dev-server --port 5000",
"dist": "NODE_ENV=production webpack --progress",
"build": "NODE_ENV=production webpack --progress",
"prepublishOnly": "rimraf lib public && mkdir public && npm run dist",
"addToProject": "yo datocms-plugin:add-to-project",
"test": "echo 1"
},
"keywords": [
"datocms",
"datocms-plugin",
"field-addon",
"text-field"
],
"files": [
"public",
"docs"
],
"author": "SYMBIO <[email protected]>",
"license": "ISC",
"datoCmsPlugin": {
"title": "Sanitize Richtext",
"previewImage": "docs/preview.gif",
"coverImage": "docs/cover.png",
"entryPoint": "public/index.html",
"pluginType": "field_addon",
"fieldTypes": [
"text"
],
"parameters": {
"global": [],
"instance": []
}
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"generator-datocms-plugin": "^1.0.26",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^4.5.0",
"html-webpack-tags-plugin": "^2.0.17",
"localtunnel": "^2.0.0",
"mini-css-extract-plugin": "^0.11.2",
"serve": "^11.3.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"yo": "^3.1.1"
},
"dependencies": {
"js-levenshtein": "^1.1.6",
"sanitize-html": "^2.0.0"
}
}