smartspawn/package.json

62 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2016-09-28 11:01:36 +00:00
{
2024-03-30 20:48:44 +00:00
"name": "@push.rocks/smartspawn",
2024-05-14 17:28:39 +00:00
"version": "3.0.3",
2018-08-02 13:35:55 +00:00
"private": false,
2024-04-14 16:21:57 +00:00
"description": "A node module for smart subprocess handling with support for promises and streamlined subprocess communication.",
2022-07-28 20:35:16 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2016-09-28 11:01:36 +00:00
"scripts": {
2019-04-08 13:13:47 +00:00
"test": "(tstest test/)",
2022-07-28 21:14:25 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-28 20:35:16 +00:00
"buildDocs": "tsdoc"
2016-09-28 11:01:36 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:16:25 +00:00
"url": "https://code.foss.global/push.rocks/smartspawn.git"
2016-09-28 11:01:36 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartipc/issues"
},
2024-05-29 12:16:25 +00:00
"homepage": "https://code.foss.global/push.rocks/smartspawn",
2016-09-28 11:01:36 +00:00
"dependencies": {
2024-05-14 17:28:39 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2022-07-28 20:35:16 +00:00
"spawn-wrap": "^2.0.0",
"threads": "1.7.0",
2019-08-22 07:26:30 +00:00
"tiny-worker": "^2.2.0"
},
"devDependencies": {
2024-05-14 17:28:39 +00:00
"@git.zone/tsbuild": "^2.1.11",
"@git.zone/tsrun": "^1.2.8",
"@git.zone/tstest": "^1.0.24",
"@push.rocks/tapbundle": "^5.0.4",
"@types/node": "^20.12.12"
2019-08-21 22:32:09 +00:00
},
"files": [
2022-07-28 20:35:16 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-21 22:32:09 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-07-28 20:35:16 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:21:57 +00:00
],
"keywords": [
"subprocess",
"child_process",
"spawn",
"threading",
"multithreading",
"process management",
"async",
"promise"
2019-08-21 22:32:09 +00:00
]
2024-05-29 12:16:25 +00:00
}