mirror of
https://github.com/cheminfo/netcdfjs.git
synced 2026-01-18 15:56:16 +00:00
42 lines
1.3 KiB
JSON
Executable File
42 lines
1.3 KiB
JSON
Executable File
{
|
|
"name": "netcdfjs",
|
|
"version": "0.0.1",
|
|
"description": "Read and explore NetCDF files",
|
|
"keywords": [
|
|
"netcdf",
|
|
"nc",
|
|
"data",
|
|
"format"
|
|
],
|
|
"author": "Miguel Asencio <maasencioh@gmail.com> (https://github.com/maasencioh)",
|
|
"repository": "cheminfo-js/netcdfjs",
|
|
"bugs": {
|
|
"url": "https://github.com/cheminfo-js/netcdfjs/issues"
|
|
},
|
|
"homepage": "https://github.com/cheminfo-js/netcdfjs",
|
|
"license": "MIT",
|
|
"main": "./src/index.js",
|
|
"scripts": {
|
|
"eslint": "eslint src test",
|
|
"eslint-fix": "npm run eslint -- --fix",
|
|
"test": "npm run test-mocha && npm run eslint",
|
|
"test-mocha": "mocha --require should --reporter mocha-better-spec-reporter --recursive",
|
|
"test-cov": "istanbul cover node_modules/.bin/_mocha -- --require should --reporter dot --recursive",
|
|
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --require should --reporter dot --recursive",
|
|
"build": "cheminfo build"
|
|
},
|
|
"devDependencies": {
|
|
"cheminfo-tools": "^1.5.0",
|
|
"eslint": "^3.4.0",
|
|
"eslint-config-cheminfo": "^1.2.0",
|
|
"eslint-plugin-no-only-tests": "^1.1.0",
|
|
"istanbul": "^0.4.4",
|
|
"mocha": "^3.1.2",
|
|
"mocha-better-spec-reporter": "^3.0.2",
|
|
"should": "^11.1.1"
|
|
},
|
|
"dependencies": {
|
|
"iobuffer": "^2.1.0"
|
|
}
|
|
}
|