-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "react-html-parser-ultimate",
"version": "1.0.7",
"description": "A utility for converting HTML strings into React components",
"main": "lib/index.js",
"scripts": {
"build:clean": "rimraf lib",
"build:es": "babel src --out-dir lib --ignore '**/__tests__/**'",
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib",
"build": "NODE_ENV=production npm run build:clean && npm run build:es",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"release": "npm run build && release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoakimSM/react-html-parser-ultimate.git"
},
"author": "Joakim Melseth <joakim.melseth@abaris.no>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoakimSM/react-html-parser-ultimate/issues"
},
"homepage": "https://github.com/JoakimSM/react-html-parser-ultimate#readme",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^2.50.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.81.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"react": "^16.5.2",
"regenerator-runtime": "^0.12.1",
"release-it": "^7.6.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"htmlparser2": "^3.9.2"
},
"peerDependencies": {
"@babel/polyfill": "^7.0.0",
"react": "^16.5.2"
},
"files": [
"/lib/"
]
}