ml-ngmca
Version:
non-negative Generalized Morphological Component Analysis
55 lines (54 loc) • 1.35 kB
JSON
{
"name": "ml-ngmca",
"version": "1.0.0",
"description": "non-negative Generalized Morphological Component Analysis",
"main": "lib/nGMCA.js",
"module": "src/nGMCA.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/nGMCA.git"
},
"keywords": [],
"author": "jobo322 <jose.bolanos@correounivalle.edu.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/nGMCA/issues"
},
"homepage": "https://github.com/mljs/nGMCA#readme",
"jest": {
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@types/jest": "^26.0.21",
"eslint": "^7.22.0",
"eslint-config-cheminfo": "^5.2.3",
"jest": "^26.6.3",
"jest-matcher-deep-close-to": "^2.0.1",
"prettier": "^2.2.1",
"rollup": "^2.42.4"
},
"dependencies": {
"median-quickselect": "^1.0.1",
"ml-matrix": "^6.7.0"
}
}