mirror of
https://github.com/cheminfo/netcdfjs.git
synced 2026-01-25 16:07:08 +00:00
48 lines
1.2 KiB
JSON
Executable File
48 lines
1.2 KiB
JSON
Executable File
{
|
|
"name": "netcdfjs",
|
|
"version": "2.0.1",
|
|
"description": "Read and explore NetCDF files",
|
|
"main": "lib/index.js",
|
|
"module": "src/index.js",
|
|
"keywords": [
|
|
"netcdf",
|
|
"nc",
|
|
"data",
|
|
"format"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"lib"
|
|
],
|
|
"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": {
|
|
"build": "cheminfo-build --entry src/index.js --root NetCDF",
|
|
"eslint": "eslint src",
|
|
"eslint-fix": "npm run eslint -- --fix",
|
|
"prepack": "rollup -c",
|
|
"test": "npm run test-coverage && npm run eslint",
|
|
"test-coverage": "jest --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
|
|
"@types/jest": "^27.0.1",
|
|
"cheminfo-build": "^1.1.11",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-cheminfo": "^5.4.0",
|
|
"eslint-plugin-import": "^2.24.2",
|
|
"eslint-plugin-jest": "^24.4.0",
|
|
"jest": "^27.1.0",
|
|
"prettier": "^2.3.2",
|
|
"rollup": "^2.56.3"
|
|
},
|
|
"dependencies": {
|
|
"iobuffer": "^5.0.3"
|
|
}
|
|
}
|