function-exec-sync
Version:
Run a function in a node process
69 lines (68 loc) • 1.59 kB
JSON
{
"name": "function-exec-sync",
"version": "1.3.4",
"description": "Run a function in a node process",
"keywords": [
"function",
"exec",
"sync",
"execPath",
"typescript"
],
"homepage": "https://github.com/function-exec-sync#README.md",
"bugs": {
"url": "https://github.com/function-exec-sync/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/function-exec-sync.git"
},
"license": "MIT",
"author": {
"name": "Kevin Malakoff",
"email": "kmalakoff@gmail.com",
"url": "https://github.com/kmalakoff"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe",
"test": "mocha --no-timeouts test/**/*.test.*",
"test:engines": "nvu engines tsds test:node --no-timeouts",
"version": "tsds version"
},
"dependencies": {
"async-compat": "^1.6.16",
"core-js": "^3.43.0",
"mkdirp-classic": "^0.5.3",
"os-shim": "^0.1.3",
"serialize-javascript": "6.0.2",
"short-hash": "^1.0.0",
"temp-suffix": "^0.1.20",
"thread-sleep-compat": "^1.0.1"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"lodash.keys": "*",
"pinkie-promise": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts"
}
}