{
"name": "posix-node",
"version": "0.12.0",
"description": "Missing Posix Functions for Node.js (via a native module written in Zig)",
"main": "dist/index.js",
"files": ["dist/**", "README.md", "package.json"],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "make -j4 all",
"clean": "make clean",
"tsc": "pnpm exec tsc -w",
"test": "pnpm exec tsc && jest ./dist",
"test-no-cache": "pnpm exec jest --no-cache ./dist",
"test-watch": "pnpm exec jest --watch ./dist",
"prepublishOnly": "make -j4 all && make test && rm -f ./dist/*.o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sagemathinc/cowasm.git"
},
"keywords": ["posix", "zig", "node"],
"author": "William Stein <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sagemathinc/cowasm/issues"
},
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/core/posix-node#readme",
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.3",
"jest": "^29.2.1",
"typescript": "^4.8.4"
},
"dependencies": {
"debug": "^4.3.4"
}
}