-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "electron-ipc-bus",
"version": "0.17.4",
"description": "A safe IPC bus for applications built on Electron.",
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelVasseur/electron-ipc-bus.git"
},
"keywords": [],
"author": "Michael Vasseur",
"license": "MIT",
"bugs": {
"url": "https://github.com/MichaelVasseur/electron-ipc-bus/issues"
},
"homepage": "https://github.com/MichaelVasseur/electron-ipc-bus#readme",
"maintainers": [
{
"name": "Michael Vasseur",
"email": "michael.vasseur@thomsonreuters.com"
},
{
"name": "Emmanuel Kimmerlin",
"email": "emmanuel.kimmerlin@thomsonreuters.com"
}
],
"main": "./lib/electron-ipc-bus.js",
"types": "./lib/electron-ipc-bus.d.ts",
"dependencies": {
"@types/electron": "^1.4.31",
"@types/node": "^0.0.3",
"@types/uuid": "^2.0.29",
"easy-ipc": "^0.2.2"
},
"devDependencies": {
"del": "^2.2.2",
"del-cli": "^0.2.1",
"dts-bundle": "^0.6.1",
"tslint": "^4.1.1",
"tslint-microsoft-contrib": "^4.0.1",
"typescript": "^2.1.4",
"typings": "^2.0.0"
},
"scripts": {
"clean": "del-cli ./lib ./build ./dist",
"build": "npm run build-js && npm run build-declaration",
"build-js": "tsc -p ./tsconfig/tsconfig-js.json",
"build-declaration": "npm run build-declaration-ts && npm run build-declaration-dts-bundle",
"build-declaration-ts": "tsc -p ./tsconfig/tsconfig-declaration.json",
"build-declaration-dts-generator": "dts-generator --name electron-ipc-bus --project . --out ./lib/index.d.ts",
"build-declaration-dts-bundle": "dts-bundle --outputAsModuleFolder --name electron-ipc-bus --main ./lib/electron-ipc-bus.d.ts --removeSource",
"tsc": "tsc",
"tslint": "tslint"
}
}