forked from mikenikles/html-to-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.51 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.2.1",
"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": {
"ent": "^2.2.0",
"htmlparser2": "^3.8.3",
"ramda": "^0.22.0",
"underscore.string.fp": "^1.0.4"
},
"peerDependencies": {
"react": "^15.0"
},
"devDependencies": {
"coveralls": "^2.11",
"eslint": "^3.7.0",
"istanbul": "^0.4",
"mocha": "^3.0",
"mocha-lcov-reporter": "^1.2.0",
"react": "^15.0",
"react-dom": "^15.0"
}
}