-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
69
{
"name": "ipc-monitor",
"version": "1.0.6-beta.0",
"description": "Observable-based IPC Monitoring Tool",
"main": "index.js",
"scripts": {
"clean": "rimraf dist types package",
"type-check": "tsc --noEmit --skipLibCheck",
"compile": "tsc --outDir ./dist --skipLibCheck --declaration",
"build": "rollup -c",
"make-package": "node ./.make-package.js",
"prepublishOnly": "npm run clean && npm run build && npm run make-package",
"prettify": "prettier --write ./src",
"lint": "eslint --fix ./src",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KeijiBranshi/ipc-monitor.git"
},
"keywords": [
"rxjs",
"electron",
"ipc",
"observable"
],
"author": "Brandon Keiji <[email protected]>",
"license": "MIT",
"types": "./types/index.d.ts",
"dependencies": {
"rxjs": "^5.5.12"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.0",
"@types/node-uuid": "0.0.28",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-jest": "^26.1.0",
"electron": "^7.3.1",
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"jest": "^26.1.0",
"lodash": "^4.17.15",
"node-uuid": "^1.4.7",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.18.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.1",
"rxjs-marbles": "^2.4.1",
"tslib": "^2.0.0",
"typescript": "^4.0.5",
"typescript-transform-paths": "1.1.13"
},
"peerDependencies": {
"electron": "^4.12.1",
"node-uuid": "^1.4.7"
},
"sideEffects": true
}