forked from vishaltelangre/editorjs-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "editorjs-summary",
"version": "1.0.0",
"description": "Editor.js tool for adding colorful summarys",
"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/liruixue/editorjs-summary.git"
},
"keywords": [
"editorjs",
"editor.js",
"editorjs tool",
"codex",
"codex editor",
"codex.editor",
"summary",
"info message",
"note"
],
"author": "Vishal Telangre",
"license": "MIT",
"bugs": {
"url": "https://github.com/liruixue/editorjs-summary/issues"
},
"homepage": "https://github.com/liruixue/editorjs-summary",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-loader": "8",
"css-loader": "^3.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5",
"style-loader": "^1.2.1",
"svg-inline-loader": "^0.8.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}