morphoviewer-node
Advanced tools
Comparing version 0.1.15 to 0.1.16
{ | ||
"name": "morphoviewer-node", | ||
"version": "0.1.15", | ||
"version": "0.1.16", | ||
"description": "A 3D neuron morphology viewer for the server", | ||
@@ -35,4 +35,6 @@ "repository": "https://github.com/kenjinp/morphoviewer", | ||
}, | ||
"peerDependencies": { | ||
"canvas": "^2.5.0" | ||
}, | ||
"dependencies": { | ||
"canvas": "^2.5.0", | ||
"codecutils": "^0.1.3", | ||
@@ -39,0 +41,0 @@ "morphologycorejs": "^0.1.10", |
@@ -1,7 +0,7 @@ | ||
import { terser } from 'rollup-plugin-terser'; | ||
import resolve from 'rollup-plugin-node-resolve'; | ||
import builtins from 'rollup-plugin-node-builtins'; | ||
import globals from 'rollup-plugin-node-globals'; | ||
import commonjs from 'rollup-plugin-commonjs'; | ||
import pkg from './package.json'; | ||
// import { terser } from 'rollup-plugin-terser'; | ||
import resolve from "rollup-plugin-node-resolve"; | ||
import builtins from "rollup-plugin-node-builtins"; | ||
import globals from "rollup-plugin-node-globals"; | ||
import commonjs from "rollup-plugin-commonjs"; | ||
import pkg from "./package.json"; | ||
@@ -50,3 +50,3 @@ export default [ | ||
sourcemap: true, | ||
format: 'es', | ||
format: "es" | ||
}, | ||
@@ -56,6 +56,6 @@ external: [...Object.keys(pkg.dependencies || {})], | ||
resolve(), | ||
commonjs({ include: 'node_modules/**' }), | ||
commonjs({ include: "node_modules/**" }), | ||
globals(), | ||
builtins(), | ||
], | ||
builtins() | ||
] | ||
}, | ||
@@ -69,3 +69,3 @@ | ||
sourcemap: true, | ||
format: 'cjs', | ||
format: "cjs" | ||
}, | ||
@@ -76,7 +76,7 @@ external: [...Object.keys(pkg.dependencies || {})], | ||
resolve(), | ||
commonjs({ include: 'node_modules/**' }), | ||
commonjs({ include: "node_modules/**" }), | ||
globals(), | ||
builtins(), | ||
], | ||
}, | ||
] | ||
builtins() | ||
] | ||
} | ||
]; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
810540
- Removedcanvas@^2.5.0