-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "pipespawn",
"version": "1.7.0",
"description": "A utility to pipe a Buffer / NodeJS.ReadableStream through an external process and return the result as a Buffer / NodeJS.ReadableStream.",
"main": "dist/src/pipespawn.js",
"types": "dist/src/pipespawn.d.ts",
"type": "module",
"engines": {
"node": ">=19.0.0",
"npm": ">=8.19.2"
},
"scripts": {
"build:clean": "rimraf dist",
"build:remove-tests": "rimraf dist/test",
"build:compile": "tsc",
"build": "npm-run-all build:clean build:compile build:remove-tests",
"lint:fix:src": "ts-standard --fix src/**/*.ts",
"lint:fix:test": "ts-standard --fix src/**/*.ts",
"lint:fix": "npm-run-all lint:fix:src lint:fix:test",
"lint:src": "ts-standard src/**/*.ts",
"lint:test": "ts-standard src/**/*.ts",
"lint": "npm-run-all lint:src lint:test",
"test:run": "uvu -r tsm test --bail src/",
"test": "npm-run-all lint test:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wingedrhino/node-pipespawn.git"
},
"keywords": [
"pipe",
"subprocess",
"readable",
"stream"
],
"author": "Rhino Maximus",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/wingedrhino/node-pipespawn/issues"
},
"homepage": "https://github.com/wingedrhino/node-pipespawn#readme",
"devDependencies": {
"@types/node": "^18.11.6",
"earljs": "^0.2.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-standard": "^12.0.1",
"tsm": "^2.2.2",
"typescript": "^4.8.4",
"uvu": "^0.5.6"
},
"dependencies": {
"rhinoerror": "^1.0.3",
"rhinologger": "^0.2.2"
}
}