Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/python-wasm
Path: blob/main/core/f2c/package.json
1391 views
1
{
2
"name": "@cowasm/f2c",
3
"version": "1.0.0",
4
"description": "WebAssembly build of the f2c Fortran-to-C compiler",
5
"main": "index.js",
6
"files": ["dist/wasm/**", "README.md", "package.json", "index.js"],
7
"scripts": {
8
"preinstall": "npx only-allow pnpm",
9
"build": "make wasm",
10
"prepublishOnly": "npm run build && make test",
11
"test": "make test"
12
},
13
"repository": {
14
"type": "git",
15
"url": "git+ssh://[email protected]/sagemathinc/cowasm.git"
16
},
17
"keywords": ["WebAssembly", "wasm"],
18
"author": "William Stein <[email protected]>",
19
"license": "BSD-3-Clause",
20
"bugs": {
21
"url": "https://github.com/sagemathinc/cowasm/issues"
22
},
23
"homepage": "https://github.com/sagemathinc/cowasm/tree/main/core/f2c",
24
"devDependencies": {
25
"wasi-js": "workspace:*"
26
}
27
}
28
29