mirror of
https://github.com/cheminfo/netcdfjs.git
synced 2026-01-18 15:56:16 +00:00
54 lines
1.5 KiB
JSON
Executable File
54 lines
1.5 KiB
JSON
Executable File
{
|
|
"name": "netcdfjs",
|
|
"version": "3.0.0",
|
|
"description": "Read and explore NetCDF files",
|
|
"main": "./lib/index.js",
|
|
"module": "./lib-esm/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"lib",
|
|
"lib-esm"
|
|
],
|
|
"keywords": [
|
|
"netcdf",
|
|
"nc",
|
|
"data",
|
|
"format"
|
|
],
|
|
"author": "Miguel Asencio <maasencioh@gmail.com> (https://github.com/maasencioh)",
|
|
"repository": "cheminfo/netcdfjs",
|
|
"bugs": {
|
|
"url": "https://github.com/cheminfo/netcdfjs/issues"
|
|
},
|
|
"homepage": "https://github.com/cheminfo/netcdfjs",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"check-types": "tsc --noEmit",
|
|
"clean": "rimraf lib lib-esm",
|
|
"eslint": "eslint src --cache",
|
|
"eslint-fix": "npm run eslint -- --fix",
|
|
"prepack": "npm run tsc",
|
|
"prettier": "prettier --check src",
|
|
"prettier-write": "prettier --write src",
|
|
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
|
|
"test-only": "jest --coverage",
|
|
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
|
|
"tsc-cjs": "tsc --project tsconfig.cjs.json",
|
|
"tsc-esm": "tsc --project tsconfig.esm.json"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.3",
|
|
"cheminfo-types": "^1.7.2",
|
|
"eslint": "^8.46.0",
|
|
"eslint-config-cheminfo-typescript": "^12.0.4",
|
|
"jest": "^29.6.2",
|
|
"prettier": "^3.0.1",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"iobuffer": "^5.3.2"
|
|
}
|
|
}
|