-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 KB
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
67
68
69
{
"name": "editorjs-react-renderer",
"version": "3.5.1",
"license": "ISC",
"description": "A library for rendering styled, responsive and flexible React components from block style data objects",
"keywords": [
"EditorJS React Renderer",
"Editor.js",
"React",
"Codex Editor",
"Rich Text Editor",
"EditorJS React",
"EditorJS Renderer"
],
"author": "Adombang Munang Mbomndih <dzedock@gmail.com> (https://bomdisoft.com)",
"homepage": "https://err.bomdisoft.com/",
"contributors": [
"Tomáš Hylský <thylsky@gmail.com> (https://linktr.ee/thylsky)",
"Gabrijel Gavranović",
"Alvaro Lozano",
"remoblaser <me@remoblaser.ch> (http://www.remoblaser.ch)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dev-juju/EditorJS-React-Renderer.git"
},
"scripts": {
"build": "webpack --progress",
"start": "babel-node test.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"html-react-parser": "^3.0.4",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.25",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^9.1.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"files": [
"dist"
],
"main": "dist/index.min.js",
"types": "dist/index.d.ts"
}