-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "editorjs-alert",
"version": "1.1.4",
"description": "Editor.js tool for adding colorful alerts",
"main": "./dist/bundle.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"precommit": "yarn build && git add dist && lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"lint-staged": {
"**/*.{html,css,js}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vishaltelangre/editorjs-alert.git"
},
"keywords": [
"editorjs",
"editor.js",
"editorjs tool",
"codex",
"codex editor",
"codex.editor",
"alert",
"info message",
"note"
],
"author": "Vishal Telangre",
"license": "MIT",
"bugs": {
"url": "https://github.com/vishaltelangre/editorjs-alert/issues"
},
"homepage": "https://github.com/vishaltelangre/editorjs-alert",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-loader": "9.1.2",
"css-loader": "^6.7.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "2.8.4",
"sass": "^1.59.3",
"sass-loader": "^13.2.1",
"style-loader": "^3.3.2",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1"
}
}