forked from roman01la/html-to-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "html-to-react-components",
"version": "1.4.0",
"description": "Extract annotated portions of HTML into React components as separate modules",
"main": "lib/index.js",
"bin": {
"html2react": "lib/cli.js"
},
"scripts": {
"test": "npm run lint && istanbul cover _mocha test --report lcovonly && coveralls < coverage/lcov.info && rm -rf ./coverage",
"lint": "eslint ./lib/*.js ./test/*.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.3.26",
"babel-traverse": "6.3.26",
"babel-types": "6.3.24",
"babylon": "6.3.26",
"chalk": "^1.1.1",
"cst": "0.0.16",
"esformatter": "^0.8.1",
"esformatter-jsx": "^4.1.0",
"esformatter-quotes": "^1.0.3",
"glob": "^6.0.3",
"htmltojsx": "^0.2.5",
"meow": "^3.6.0",
"mkdirp": "^0.5.1",
"posthtml": "^0.8.0",
"posthtml-parser": "^0.1.1",
"posthtml-render": "^1.0.5",
"rocambole-token": "^1.2.1"
},
"devDependencies": {
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"istanbul": "^0.4.2",
"mocha": "^2.3.4"
}
}