forked from hata6502/editorjs-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
58
59
60
61
62
63
64
65
66
{
"name": "editorjs-layout",
"version": "0.0.0",
"description": "Layout block tool for Editor.js. ",
"keywords": [
"codex editor",
"editor.js",
"editorjs",
"layout",
"tool"
],
"bugs": {
"url": "https://github.com/hata6502/editorjs-layout/issues"
},
"repository": "https://github.com/hata6502/editorjs-layout",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hata6502"
},
"license": "MIT",
"author": "Tomoyuki Hata <[email protected]>",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"check-license": "license-checker --excludePackages '[email protected];[email protected];[email protected];[email protected];[email protected];[email protected];[email protected];[email protected];[email protected]' --excludePrivatePackages --onlyAllow 'Apache-2.0;BSD;BSD-2-Clause;BSD-3-Clause;CC0-1.0;CC-BY-3.0;CC-BY-4.0;ISC;MIT;Public Domain;Unlicense;WTFPL' --production --unknown > /dev/null",
"fix": "prettier --write .",
"generate-disclaimer": "yarn licenses generate-disclaimer --ignore-platform > DISCLAIMER.md",
"semantic-release": "semantic-release",
"test": "yarn check-license && prettier --check . && tsc --noEmit",
"webpack": "webpack"
},
"dependencies": {
"@editorjs/editorjs": "^2.19.1"
},
"devDependencies": {
"@types/uuid": "^8.3.0",
"dialog-polyfill": "^0.5.6",
"ionicons": "^5.3.0",
"license-checker": "^25.0.1",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"uuid": "^8.3.2",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
}
}