forked from reactjs/react-magic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
58
59
{
"name": "html-2-jsx",
"version": "0.5.1-dev",
"description": "Converts HTML to JSX for use with React",
"main": "src/index.js",
"bin": "src/cli.js",
"scripts": {
"clean": "rimraf lib dist",
"prepublishOnly": "npm run clean && npm run site && npm run lib && npm run dist",
"site": "webpack --progress --colors --config webpack.config.site.js",
"lib": "webpack --progress --colors --config webpack.config.lib.js",
"dist": "webpack --progress --colors --config webpack.config.production.js",
"dev": "node webpack-dev-server.js"
},
"browser": {
"./src/index.js": "./src/browser.js"
},
"dependencies": {
"jsdom": "^9.9.0",
"react-dom": "^15.6.1",
"yargs": "~4.6.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"codemirror": "^3.21.0",
"css-loader": "^0.28.4",
"del": "~2.2.0",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"image-webpack-loader": "^3.3.1",
"react": "^15.6.1",
"rimraf": "^2.5.4",
"url-loader": "^0.5.9",
"webpack": "^2.6.1",
"webpack-dev-middleware": "^1.11.0"
},
"repository": {
"type": "git",
"url": "git://github.com/RequireSun/HTMLtoJSX.git"
},
"keywords": [
"react",
"jsx",
"htmltojsx",
"html",
"react-component"
],
"author": "Require Sun <[email protected]> (https://github.com/RequireSun)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/RequireSun/HTMLtoJSX/issues"
},
"homepage": "https://github.com/RequireSun/HTMLtoJSX"
}