-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.31 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": "rx-ipc-electron",
"version": "0.1.2",
"description": "Pass RxJS Observables through IPC in Electron",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rimraf lib && tsc",
"clean": "rimraf lib",
"lint": "tslint **/*.ts -e \"lib/**/*.ts\" -t verbose",
"mocha": "electron-mocha ./test/*.ts",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colinskow/rx-ipc-electron.git"
},
"keywords": [
"Electron",
"IPC",
"ipcMain",
"ipcRenderer",
"RxJS",
"Observable"
],
"author": "Colin Skow <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/colinskow/rx-ipc-electron/issues"
},
"homepage": "https://github.com/colinskow/rx-ipc-electron",
"dependencies": {
"rxjs": "^5.0.0"
},
"peerDependencies": {
"electron": "^1.4.0"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/electron": "^1.4.37",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"chai": "^3.5.0",
"electron": "^1.6.6",
"electron-mocha": "^3.4.0",
"mocha-typescript": "^1.1.2",
"rimraf": "^2.6.1",
"ts-node": "^3.0.4",
"tslib": "^1.7.0",
"tslint": "^5.2.0",
"typescript": "~2.3.2"
}
}