-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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": "tags-editor",
"version": "1.1.0",
"description": "A tiny tags 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/dprietob/tags-editor.git"
},
"keywords": [
"tags",
"editor",
"tiny",
"html",
"vanilla",
"javascript"
],
"author": "Daniel Prieto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dprietob/tags-editor/issues"
},
"homepage": "https://dprietob.github.io/tags-editor",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"babel-plugin-transform-import-styles": "0.0.11",
"babel-template": "^6.26.0",
"clean-webpack-plugin": "0.1.19",
"css-loader": "1.0.0",
"html-webpack-plugin": "3.2.0",
"load-styles": "^2.0.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-uglify": "^6.0.4",
"source-map-explorer": "^1.6.0",
"style-loader": "0.23.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "4.1.4"
}
}