-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
{
"name": "electron-broker",
"version": "3.0.1",
"description": "Simple and seamless messaging for Electron, with built-in inter-process communication protocol.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"test:functional": "playwright test",
"pretest:functional": "npm run link:functional:app && npm run build && npm run build:functional:app",
"coverage": "jest ---coverage --runInBand",
"build": "tsc -p ./tsconfig.build.json",
"build:functional:app": "cd test/functional/app && npm run package",
"postbuild": "cpx \"./lib/templates/*\" dist",
"link:functional:app": "npm link && cd test/functional/app && npm link electron-broker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/przucidlo/electron-broker.git"
},
"keywords": [
"electron",
"ipc",
"library"
],
"author": "przucidlo",
"license": "ISC",
"bugs": {
"url": "https://github.com/przucidlo/electron-broker/issues"
},
"homepage": "https://github.com/przucidlo/electron-broker#readme",
"files": [
"dist",
"README.md"
],
"peerDependencies": {
"electron": ">= 8.0.0",
"reflect-metadata": ">= 0.1.0"
},
"dependencies": {
"class-transformer": "^0.4.0",
"electron": ">= 8.0.0",
"inversify": "^5.0.5",
"lodash.clonedeep": "^4.5.0",
"reflect-metadata": ">= 0.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/jest": "^26.0.22",
"@types/lodash.clonedeep": "^4.5.6",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"cpx": "^1.5.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"semantic-release": "^24.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.4.2"
}
}