netcdf4-wasm
Version:
NetCDF4 library compiled to WebAssembly with TypeScript bindings
62 lines (61 loc) • 1.78 kB
JSON
{
"name": "netcdf4-wasm",
"version": "0.1.1",
"description": "NetCDF4 library compiled to WebAssembly with TypeScript bindings",
"main": "dist/index.js",
"browser": "dist/netcdf4-wasm.umd.min.js",
"module": "dist/netcdf4-wasm.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:wasm && npm run build:js && npm run build:umd",
"build:wasm": "bash scripts/build-wasm.sh",
"build:js": "tsc",
"build:umd": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rm -rf dist build coverage",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "echo 'Linting not configured yet'",
"typecheck": "tsc --noEmit",
"aprepublishOnly": "npm run clean && npm run test && npm run build",
"install-emscripten": "bash scripts/install-emscripten.sh",
"check-deps": "bash scripts/check-dependencies.sh"
},
"keywords": [
"netcdf",
"netcdf4",
"wasm",
"webassembly",
"emscripten",
"scientific-computing"
],
"author": "Oceanum.io",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"rollup": "^2.79.2",
"ts-jest": "^29.0.0",
"tslib": "^2.8.1",
"typescript": "^5.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oceanum-io/netcdf4-wasm.git"
},
"homepage": "https://oceanum-io.github.io/netcdf4-wasm/",
"bugs": {
"url": "https://github.com/oceanum-io/netcdf4-wasm/issues"
}
}