-
-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 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
{
"name": "html-to-react-components",
"version": "3.0.0",
"description": "Converts HTML pages into React components",
"main": "lib/index.js",
"browser": "dist/html2react.js",
"bin": {
"html2react": "lib/cli.js"
},
"scripts": {
"test": "jest test",
"build:example": "webpack -p",
"build:browser": "webpack -p --config webpack.browser.js"
},
"bugs": {
"url": "https://github.com/roman01la/html-to-react-components/issues"
},
"homepage": "https://github.com/roman01la/html-to-react-components",
"keywords": [
"posthtml",
"html",
"react",
"component",
"babel"
],
"repository": {
"type": "git",
"url": "git://github.com/roman01la/html-to-react-components.git"
},
"author": "Roman Liutikov <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@babel/generator": "^7.24.0",
"@babel/parser": "^7.24.0",
"@babel/traverse": "^7.24.0",
"@babel/types": "^7.24.0",
"chalk": "^4.1.2",
"glob": "^9.3.4",
"jsdom": "^24.0.0",
"meow": "^9.0.0",
"posthtml": "^0.11.3",
"posthtml-parser": "^0.4.1",
"posthtml-render": "^1.1.4",
"prettier": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-loader": "^8.3.0",
"jest": "^29.5.0",
"webpack": "^4.29.0"
}
}