forked from MarshallOfSound/react-electron-web-view
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.87 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.87 KB
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": "@luxbit/react-electron-webview",
"version": "2.0.6",
"description": "React Wrapper for Electron WebView",
"main": "dist/ElectronWebView.js",
"author": "Olivier Puraye",
"homepage": "https://github.com/luxbit/react-electron-webview",
"repository": {
"type": "git",
"url": "git+https://github.com/luxbit/react-electron-webview.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/luxbit/react-electron-webview/issues"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"babel-eslint": "^7.2.3",
"babel-laoder": "^0.0.1-security",
"babel-loader": "^9.1.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^3.5.0",
"cross-env": "^7.0.3",
"electron": "^26.3.0",
"electron-mocha": "^12.1.0",
"enzyme": "^3.11.0",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"build": "mkdir -p dist && webpack",
"prepublish": "npm run build",
"lint": "exit 0",
"mocha": "electron-mocha test/*_spec.js --renderer --compilers js:babel-core/register --timeout=10000",
"pretest": "npm run build",
"test": "npm run lint && npm run mocha",
"watch": "gulp watch"
},
"keywords": [
"react",
"react-component",
"webview"
],
"directories": {
"test": "test"
},
"license": "ISC"
}