-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "tinymce-plugin-h5img",
"version": "1.0.0",
"description": "A tinyMCE plugin for upload image on HTML5 ways (d&d, input[type=file]) Edit",
"main": "lib/index.js",
"scripts": {
"sample": "cd test && webpack-dev-server",
"prepublish": "tsc && webpack",
"clean": "rm -rf lib dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ekoneko/tinymce-plugin-h5img.git"
},
"keywords": [
"tinymce"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ekoneko/tinymce-plugin-h5img/issues"
},
"homepage": "https://github.com/ekoneko/tinymce-plugin-h5img",
"peerDependencies": {
"tinymce": "^4.6.5"
},
"devDependencies": {
"@types/node": "^8.0.24",
"awesome-typescript-loader": "^3.2.3",
"css-loader": "^0.28.5",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.18.2",
"tinymce": "^4.6.5",
"typescript": "^2.4.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}