forked from aknuds1/html-to-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.37 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
{
"name": "html-to-react",
"version": "1.4.2",
"description": "A lightweight library that converts raw HTML to a React DOM structure.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/eslint . && ./node_modules/mocha/bin/mocha",
"test-coverage": "eslint . && nyc --reporter=text-lcov npm test | coveralls",
"test-html-coverage": "eslint . && nyc --reporter=html npm test; open coverage/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/aknuds1/html-to-react.git"
},
"keywords": [
"react",
"react-component",
"html"
],
"author": "Arve Knudsen, Mike Nikles",
"license": "MIT",
"bugs": {
"url": "https://github.com/aknuds1/html-to-react/issues"
},
"homepage": "https://github.com/aknuds1/html-to-react",
"config": {
"blanket": {
"pattern": [
""
],
"data-cover-never": [
"node_modules",
"test"
]
}
},
"dependencies": {
"domhandler": "^3.0",
"htmlparser2": "^4.1.0",
"lodash.camelcase": "^4.3.0",
"ramda": "^0.27"
},
"peerDependencies": {
"react": "^16.0"
},
"devDependencies": {
"coveralls": "^3.0.13",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^15.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"volta": {
"node": "14.0.0"
}
}