Files
smartspawn/package.json
T

66 lines
1.5 KiB
JSON
Raw Normal View History

2016-09-28 13:01:36 +02:00
{
2024-03-30 21:48:44 +01:00
"name": "@push.rocks/smartspawn",
2026-05-01 18:49:10 +00:00
"version": "3.0.4",
2018-08-02 15:35:55 +02:00
"private": false,
2024-04-14 18:21:57 +02:00
"description": "A node module for smart subprocess handling with support for promises and streamlined subprocess communication.",
"exports": {
".": "./dist_ts/index.js"
},
2022-07-28 22:35:16 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2016-09-28 13:01:36 +02:00
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
2022-07-28 22:35:16 +02:00
"buildDocs": "tsdoc"
2016-09-28 13:01:36 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:16:25 +02:00
"url": "https://code.foss.global/push.rocks/smartspawn.git"
2016-09-28 13:01:36 +02:00
},
"author": "Task Venture Capital GmbH <hello@task.vc>",
2016-09-28 13:01:36 +02:00
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartspawn/issues"
2016-09-28 13:01:36 +02:00
},
2024-05-29 14:16:25 +02:00
"homepage": "https://code.foss.global/push.rocks/smartspawn",
2016-09-28 13:01:36 +02:00
"dependencies": {
"@push.rocks/smartpromise": "^4.2.4",
"spawn-wrap": "^3.0.0",
2022-07-28 22:35:16 +02:00
"threads": "1.7.0",
"tiny-worker": "^2.3.0"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2019-08-22 00:32:09 +02:00
},
"files": [
2022-07-28 22:35:16 +02:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-22 00:32:09 +02:00
"cli.js",
".smartconfig.json",
"license",
2019-08-22 00:32:09 +02:00
"npmextra.json",
"readme.md"
2022-07-28 22:35:16 +02:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 18:21:57 +02:00
],
"keywords": [
"subprocess",
"child_process",
"spawn",
"threading",
"multithreading",
"process management",
"async",
"promise"
2019-08-22 00:32:09 +02:00
]
}