-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 930 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "matrix-to-color",
"version": "1.1.0",
"description": "Create an image with pixel colors based on the values of a matrix",
"keywords": [
"color",
"matrix",
"pixel",
"image"
],
"files": [
"src"
],
"author": "Michaël Zasso",
"repository": "cheminfo-js/matrix-to-color",
"bugs": {
"url": "https://github.com/cheminfo-js/matrix-to-color/issues"
},
"homepage": "https://github.com/cheminfo-js/matrix-to-color",
"license": "MIT",
"main": "./src/matrixToColor.js",
"scripts": {
"test": "mocha --require should --reporter mocha-better-spec-reporter --recursive",
"build": "cheminfo build --no-uglify"
},
"devDependencies": {
"cheminfo-tools": "^1.3.4",
"mocha": "^2.5.3",
"mocha-better-spec-reporter": "^3.0.2",
"should": "^9.0.2"
},
"dependencies": {
"chroma-js": "^1.1.1",
"ml-array-utils": "^0.2.3",
"ml-stat": "^1.2.0"
}
}