-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "react-electron-webview",
"description": "React component for the <webview> element in Electron.",
"main": "index.js",
"scripts": {
"test": "karma start",
"prepublish": "babel src/webview.js --out-file index.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/keokilee/react-electron-webview.git"
},
"keywords": [
"react",
"electron",
"webview"
],
"author": "George Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/keokilee/react-electron-webview/issues"
},
"homepage": "https://github.com/keokilee/react-electron-webview#readme",
"peerDependencies": {
"electron": "^1.0.0",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0|| ^15.0.0"
},
"dependencies": {
"camelcase": "^4.0.0"
},
"devDependencies": {
"@types/electron": "^1.4.26",
"@types/react": "^0.14.47",
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"electron": "^1.4.7",
"expect": "^1.13.4",
"karma": "^1.3.0",
"karma-electron": "^5.1.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"mocha": "^3.1.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"semantic-release": "^6.3.2",
"webpack": "^1.12.9"
},
"version": "2.0.1"
}