-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "@kldzj/named-pipes",
"description": "Create and write to or read from named pipes. It works on both Windows and Unix.",
"keywords": [
"named-pipe",
"socket",
"fifo",
"pipe",
"ipc"
],
"version": "2.0.6",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"license": "MIT",
"author": {
"name": "Nikolai Kolodziej",
"email": "[email protected]",
"url": "https://github.com/kldzj"
},
"homepage": "https://github.com/kldzj/named-pipes",
"repository": "https://github.com/kldzj/named-pipes",
"bugs": "https://github.com/kldzj/named-pipes/issues",
"scripts": {
"test": "jest",
"build": "tsc",
"prebuild": "rimraf dist",
"prepublishOnly": "yarn build && yarn test"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.1",
"@types/node": "^16",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@kldzj/which": "^1.0.0",
"debug": "^4.3.3",
"tiny-typed-emitter": "^2.1.0"
}
}