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
50 lines (50 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "html-to-react-components",
"version": "1.6.3",
"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 <roman01la@romanliutikov.com>",
"license": "MIT",
"dependencies": {
"babel-generator": "^6.3.26",
"babel-traverse": "^6.3.26",
"babel-types": "^6.3.24",
"babylon": "^6.3.26",
"chalk": "2.3.0",
"glob": "^7.1.2",
"jsdom-no-contextify": "^3.1.0",
"meow": "4.0.0",
"mkdirp": "^0.5.1",
"posthtml": "0.11.2",
"posthtml-parser": "0.4.0",
"posthtml-render": "^1.0.6",
"prettier": "^1.10.2",
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"jest": "22.1.4",
"webpack": "^3.10.0"
}
}