This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpackage.json
56 lines (56 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
56
{
"name": "html-to-react",
"version": "1.0.0",
"description": "A lightweight library that converts raw HTML to a React DOM structure.",
"main": "index.js",
"scripts": {
"test": "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": "istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/mikenikles/html-to-react.git"
},
"keywords": [
"react",
"react-component",
"html"
],
"author": "Mike Nikles",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikenikles/html-to-react/issues"
},
"homepage": "https://github.com/mikenikles/html-to-react",
"config": {
"blanket": {
"pattern": [
""
],
"data-cover-never": [
"node_modules",
"test"
]
}
},
"dependencies": {
"ent": "^2.2.0",
"htmlparser2": "^3.8.3",
"lodash.camelcase": "^4.3.0",
"lodash.find": "^4.6.0",
"lodash.frompairs": "^4.0.1",
"lodash.includes": "^4.3.0",
"lodash.isempty": "^4.4.0",
"lodash.map": "^4.6.0",
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"coveralls": "2.11.9",
"istanbul": "0.4.3",
"lodash": "^4.16.1",
"mocha": "2.4.5",
"mocha-lcov-reporter": "1.2.0",
"react": "^15.0",
"react-dom": "^15.0"
}
}