Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/core/posix-node/package.json
1391 views
1
{
2
"name": "posix-node",
3
"version": "0.12.0",
4
"description": "Missing Posix Functions for Node.js (via a native module written in Zig)",
5
"main": "dist/index.js",
6
"files": ["dist/**", "README.md", "package.json"],
7
"scripts": {
8
"preinstall": "npx only-allow pnpm",
9
"build": "make -j4 all",
10
"clean": "make clean",
11
"tsc": "pnpm exec tsc -w",
12
"test": "pnpm exec tsc && jest ./dist",
13
"test-no-cache": "pnpm exec jest --no-cache ./dist",
14
"test-watch": "pnpm exec jest --watch ./dist",
15
"prepublishOnly": "make -j4 all && make test && rm -f ./dist/*.o"
16
},
17
"repository": {
18
"type": "git",
19
"url": "git+https://github.com/sagemathinc/cowasm.git"
20
},
21
"keywords": ["posix", "zig", "node"],
22
"author": "William Stein <[email protected]>",
23
"license": "BSD-3-Clause",
24
"bugs": {
25
"url": "https://github.com/sagemathinc/cowasm/issues"
26
},
27
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/core/posix-node#readme",
28
"devDependencies": {
29
"@types/jest": "^29.2.0",
30
"@types/node": "^18.11.3",
31
"jest": "^29.2.1",
32
"typescript": "^4.8.4"
33
},
34
"dependencies": {
35
"debug": "^4.3.4"
36
}
37
}
38
39