-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "html2react",
"version": "1.2.1",
"description": "Utility for turning raw HTML into React elements",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --ignore *.spec.js",
"prepublish": "not-in-install && npm prune && npm test && npm run build || in-install",
"test": "jest"
},
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Deschtex/html2react.git"
},
"keywords": [
"html",
"react",
"html-to-react"
],
"author": "Pierre Wahlgren <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Deschtex/html2react/issues"
},
"homepage": "https://github.com/Deschtex/html2react#readme",
"dependencies": {
"react-dom-core": "^0.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"in-publish": "^2.0.0",
"jest": "^21.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"regenerator-runtime": "^0.11.0"
},
"peerDependencies": {
"react": "^15.4.0 || ^16.0.0",
"react-dom": "^15.4.0 || ^16.0.0"
},
"jest": {
"testRegex": "test/.*\\.test\\.js"
}
}