-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
{
"name": "@brandextract/tinymce-plugin-map",
"version": "0.4.2",
"description": "A TinyMCE plugin to insert a map",
"main": "plugin.js",
"scripts": {
"build": "esbuild plugin.js --target=es6 --minify --bundle --allow-overwrite --sourcemap --outfile=plugin.min.js",
"dev": "npm run build;npm run tinymce;npm run docs;",
"tinymce": "cp -r node_modules/tinymce docs/scripts",
"docs": "mkdir -p docs/scripts/plugins/map && cp -r plugin.min.js.map plugin.min.js docs/scripts/plugins/map",
"git": "git add -u",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": [
"build",
"git"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BrandExtract/tinymce-plugin-map.git"
},
"keywords": [
"TinyMCE",
"plugin",
"Google",
"Maps"
],
"author": "BrandExtract",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrandExtract/tinymce-plugin-map/issues"
},
"homepage": "https://github.com/BrandExtract/tinymce-plugin-map#readme",
"devDependencies": {
"esbuild": "^0.19.11",
"pre-commit": "^1.2.2",
"tinymce": "^6.8.2"
}
}