-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "dom-to-react",
"version": "1.0.0",
"description": "A versatile replacement for 'dangerouslySetInnerHTML'. Let's you build react-components deep within a regular HTML-Dom",
"keywords": [
"dangerouslySetInnerHTML",
"react",
"component"
],
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf lib dist",
"build:lib": "babel src/dom-to-react --out-dir lib",
"build:dist": "cross-env NODE_ENV=production webpack",
"build:dist:min": "cross-env NODE_ENV=production webpack -p",
"build": "npm run clean && npm run build:lib && npm run build:dist && npm run build:dist:min",
"prepublish": "npm run build",
"start": "cross-env NODE_ENV=development webpack-dev-server"
},
"author": "Andreas Hahn <andreas.hahn@diva-e.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diva-e/dom-to-react.git"
},
"peerDependencies": {
"react": "^0.14 || ^15 || ^16"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rimraf": "^2.6.3",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}