Skip to content

Commit

Permalink
fix: package.json for module
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed Oct 27, 2020
1 parent 577d0ad commit 9542e35
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -2,13 +2,15 @@
"name": "ml-matrix-peaks-finder",
"version": "0.3.0",
"description": "The peak picking routines for 2D arrays. This library looks for the local maxima of the given input matrix. The input matrix has to be specified as a single vector.",
"main": "./src/index.js",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"build": "cheminfo build --root matrix-peaks-finder --no-uglify",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
Expand Down

0 comments on commit 9542e35

Please sign in to comment.