-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
57 lines (57 loc) · 1.43 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": "html-to-react-components",
"version": "2.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",
"dependencies": {
"babel-generator": "^6.26.1",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"babylon": "^6.18.0",
"babylon-walk": "^1.0.2",
"chalk": "^5.2.0",
"glob": "^9.3.4",
"jsdom-no-contextify": "^3.1.0",
"meow": "^11.0.0",
"mkdirp": "^2.1.6",
"posthtml": "^0.11.3",
"posthtml-parser": "^0.4.1",
"posthtml-render": "^1.1.4",
"prettier": "^2.8.7",
"react": "15.4.1",
"react-dom": "15.4.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^9.1.2",
"babel-preset-es2015": "^6.24.1",
"jest": "^29.5.0",
"webpack": "^4.29.0"
}
}