forked from remarkablemark/html-react-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
{
"name": "html-react-parser",
"version": "0.4.12",
"description": "An HTML to React parser.",
"author": "Mark <[email protected]>",
"main": "dist/html-react-parser.js",
"scripts": {
"build:unmin": "NODE_ENV=development webpack index.js dist/html-react-parser.js",
"build:min": "NODE_ENV=production webpack -p index.js dist/html-react-parser.min.js",
"clean": "rm -rf dist",
"commitmsg": "commitlint -e $GIT_PARAMS",
"cover": "istanbul cover _mocha -- -R spec \"test/**/*\"",
"coveralls": "cat coverage/lcov.info | coveralls",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"prepublishOnly": "npm run clean && npm run build:unmin && npm run build:min",
"release": "standard-version --no-verify",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/html-react-parser"
},
"bugs": {
"url": "https://github.com/remarkablemark/html-react-parser/issues"
},
"keywords": [
"html",
"dom",
"react",
"parser",
"converter"
],
"dependencies": {
"html-dom-parser": "0.1.3",
"react-dom-core": "0.0.4",
"style-to-object": "0.2.1"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.55",
"@babel/preset-env": "7.0.0-beta.55",
"@commitlint/cli": "^6.1.0",
"@commitlint/config-conventional": "^6.1.0",
"babel-loader": "8.0.0-beta.4",
"coveralls": "^3.0.0",
"eslint": "^4.18.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lint-staged": "^7.1.1",
"mocha": "5.2.0",
"prettier": "^1.12.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"standard-version": "^4.3.0",
"webpack": "^3.11.0"
},
"peerDependencies": {
"react": "17.0.2"
},
"files": [
"dist",
"lib"
],
"license": "MIT"
}