posix-node
Version:
Missing Posix Functions for Node.js (via a native module written in Zig)
45 lines (44 loc) • 1.12 kB
JSON
{
"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": {
"build": "make -j4 all",
"clean": "make clean",
"tsc": "tsc -w",
"test": "tsc && jest ./dist",
"test-no-cache": "jest --no-cache ./dist",
"test-watch": "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 <wstein@sagemath.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sagemathinc/cowasm/issues"
},
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/packages/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"
}
}