forked from aknuds1/html-to-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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",
"version": "1.3.4",
"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": "./node_modules/.bin/eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test-html-coverage": "./node_modules/.bin/eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/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": "^2.4.2",
"htmlparser2": "^3.10.1",
"lodash.camelcase": "^4.3.0",
"ramda": "^0.26"
},
"peerDependencies": {
"react": "^16.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"istanbul": "^0.4",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}