This repository has been archived by the owner on Jun 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "electron-remote",
"version": "1.3.0",
"description": "Execute JavaScript in remote Electron processes, but more betterer",
"scripts": {
"doc": "esdoc -c ./esdoc.json",
"compile": "git clean -xdf ./lib && babel -d lib/ src/ && cp ./src/*.html ./lib/",
"prepublish": "npm run compile",
"test-renderer": "electron-mocha --renderer --require ./test/support.js ./test",
"test-browser": "electron-mocha --require ./test/support.js ./test/renderer-require",
"test": "npm run test-renderer && npm run test-browser",
"node": "cross-env ELECTRON_RUN_AS_NODE=1 ./node_modules/electron-prebuilt-compile/node_modules/.bin/electron"
},
"repository": {
"type": "git",
"url": "https://github.com/paulcbetts/electron-remote"
},
"keywords": [
"remote",
"electron",
"rx"
],
"author": "Paul Betts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulcbetts/electron-remote/issues"
},
"main": "lib/index.js",
"homepage": "https://github.com/paulcbetts/electron-remote",
"dependencies": {
"debug": "^2.5.1",
"hashids": "^1.1.1",
"lodash.get": "^4.4.2",
"pify": "^2.3.0",
"rxjs": "^5.0.0-beta.12",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2016-node5": "^1.1.2",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"cross-env": "^3.0.0",
"electron-mocha": "^6.0.3",
"electron-prebuilt-compile": "4.0.0",
"esdoc": "^1.1.0",
"esdoc-es7-plugin": "0.0.3",
"esdoc-plugin-async-to-sync": "^0.5.0",
"eslint": "^3.7.1"
}
}