-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.08 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
63
64
65
66
67
68
{
"name": "electron-rpc-api",
"version": "6.0.0",
"description": "Wrapper around the Electron's IPC for building type-safe API based RPC-like and reactive interactions",
"author": "Vladimir Yakovlev <[email protected]> (https://github.com/vladimiry)",
"license": "MIT",
"repository": "[email protected]:vladimiry/electron-rpc-api.git",
"keywords": [
"electron",
"pubsub",
"ipc",
"rpc"
],
"main": "./lib/index.js",
"scripts": {
"lib": "npm-run-all lib:clean lint lib:compile test",
"lib:clean": "rimraf ./lib",
"lib:compile": "tsc --listEmittedFiles -p ./src/lib/tsconfig.json",
"lib:compile:watch": "tsc -w -p ./src/lib/tsconfig.json",
"lint": "npm-run-all lint:lib lint:test",
"lint:lib": "tslint -p ./src/lib/tsconfig.json -c ./tslint.json \"./src/{lib,@types}/**/*.ts\"",
"lint:test": "tslint -p ./test/tsconfig.json -c ./test/tslint.json \"./test/**/*.ts\"",
"output:clean": "rimraf ./output",
"test": "cross-env TS_NODE_PROJECT=./test/tsconfig.json ava --verbose \"./test/**/*.{spec,test}.ts\""
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
},
"peerDependencies": {
"electron": ">5.0.0",
"rxjs": "^6.5.3"
},
"dependencies": {
"pubsub-to-rpc-api": "^5.1.1",
"tslib": "^1.10.0",
"uuid-browser": "^3.1.0"
},
"devDependencies": {
"@email-securely-app/import-sort-style": "^0.1.0",
"@types/node": "^12.12.21",
"@types/sinon": "^7.5.1",
"ava": "^1.2.1",
"cross-env": "^6.0.3",
"husky": "^3.1.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"install-peers": "^1.0.2",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"rewiremock": "^3.13.9",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-rules-bunch": "^0.0.8",
"typescript": "^3.7.3"
}
}