-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "tiny-editor",
"version": "0.5.0",
"description": "A tiny HTML rich text editor written in vanilla JavaScript",
"scripts": {
"build": "rollup -c",
"start": "webpack-dev-server --open",
"analyze": "npm run build && source-map-explorer dist/bundle.js",
"version": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fvilers/tiny-editor.git"
},
"keywords": [
"tiny",
"editor",
"wysiwyg",
"html",
"vanilla",
"javascript"
],
"author": "Fabian Vilers <[email protected]> (https://www.dev-one.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fvilers/tiny-editor/issues"
},
"homepage": "https://fvilers.github.io/tiny-editor",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-plugin-transform-import-styles": "0.0.11",
"babel-template": "^6.26.0",
"clean-webpack-plugin": "0.1.19",
"css-loader": "6.7.3",
"html-webpack-plugin": "5.5.0",
"load-styles": "^2.0.0",
"rollup": "^3.29.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-uglify": "^6.0.4",
"source-map-explorer": "^1.6.0",
"style-loader": "3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "4.1.4"
}
}