forked from roman01la/html-to-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "html-to-react-components",
"version": "1.6.6",
"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": "^2.4.2",
"glob": "^7.1.3",
"jsdom-no-contextify": "^3.1.0",
"meow": "^5.0.0",
"mkdirp": "^0.5.1",
"posthtml": "^0.11.3",
"posthtml-parser": "^0.4.1",
"posthtml-render": "^1.1.4",
"prettier": "^1.16.1",
"react": "15.4.1",
"react-dom": "15.4.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"jest": "^24.0.0",
"webpack": "^4.29.0"
}
}