netcdfjs/package.json
2018-11-02 13:47:43 +01:00

47 lines
1.5 KiB
JSON
Executable File

{
"name": "netcdfjs",
"version": "0.3.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-cov": "istanbul cover node_modules/.bin/_mocha -- --require should --reporter dot --recursive && codecov",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --require should --reporter dot --recursive && codecov",
"test-mocha": "mocha --require should --reporter mocha-better-spec-reporter",
"build": "cheminfo build"
},
"devDependencies": {
"cheminfo-tools": "^1.15.0",
"codecov": "^2.1.0",
"eslint": "^5.0.0",
"eslint-config-cheminfo": "^1.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.2",
"eslint-plugin-no-only-tests": "^1.1.0",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"jest-codemods": "^0.16.0",
"mocha": "^3.2.0",
"mocha-better-spec-reporter": "^3.1.0",
"should": "^11.2.1"
},
"dependencies": {
"iobuffer": "^3.2.0"
}
}