mirror of
https://github.com/cheminfo/netcdfjs.git
synced 2026-02-01 16:57:35 +00:00
42 lines
1011 B
JSON
Executable File
42 lines
1011 B
JSON
Executable File
{
|
|
"name": "netcdfjs",
|
|
"version": "1.0.0",
|
|
"description": "Read and explore NetCDF files",
|
|
"keywords": [
|
|
"netcdf",
|
|
"nc",
|
|
"data",
|
|
"format"
|
|
],
|
|
"files": [
|
|
"src"
|
|
],
|
|
"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",
|
|
"main": "./src/index.js",
|
|
"scripts": {
|
|
"eslint": "eslint src",
|
|
"eslint-fix": "npm run eslint -- --fix",
|
|
"test": "npm run test-coverage && npm run eslint",
|
|
"test-coverage": "jest --coverage",
|
|
"test-only": "jest",
|
|
"build": "cheminfo build"
|
|
},
|
|
"devDependencies": {
|
|
"cheminfo-tools": "^1.23.2",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-cheminfo": "^1.20.1",
|
|
"eslint-plugin-import": "^2.17.3",
|
|
"eslint-plugin-jest": "^22.6.4",
|
|
"jest": "^24.8.0"
|
|
},
|
|
"dependencies": {
|
|
"iobuffer": "^4.0.1"
|
|
}
|
|
}
|