-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 977 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 977 Bytes
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
{
"name": "ipos",
"version": "0.2.6",
"description": "Share objects across different Node.js processes. Write and read on both sides.",
"license": "MIT",
"main": "lib/main.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/drinking-code/inter-process-object-sharing.git"
},
"bugs": {
"url": "https://github.com/drinking-code/inter-process-object-sharing/issues"
},
"keywords": [
"ipc",
"object-sharing"
],
"scripts": {
"build": "rm -rf lib && tsc",
"watch": "tsc --watch",
"prepack": "npm run build",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --verbose --coverage"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/lodash": "^4.14.185",
"@types/node": "^18.7.18",
"jest": "^29.0.3",
"lodash": "^4.17.21",
"typescript": "^4.8.3"
},
"jest": {
"testPathIgnorePatterns": [
"src"
],
"transform": {}
}
}