-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 847 Bytes
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
{
"name": "fcs",
"version": "0.1.3",
"description": "Flow Cytometry Standard (FCS) file reader",
"main": "fcs.js",
"devDependencies": {
"coveralls": "^3.0",
"mocha": "^10.2.0",
"nyc": "^15.0.0"
},
"scripts": {
"oldtest": "mocha",
"test": "nyc --reporter=lcov mocha",
"testOnUnixUseThis": "./node_modules/.bin/mocha (I think)",
"testOnWindowsUseThis": "node node_modules/mocha/bin/mocha",
"coverage": "nyc --reporter=text-lcov report | coveralls"
},
"repository": {
"type": "git",
"url": "http://github.com/MorganConrad/fcs.git"
},
"keywords": [
"FCS",
"Flow",
"Cytometry"
],
"author": "Morgan Conrad <flyingspaniel@gmail.com>",
"homepage": "http://flyingspaniel.com/fcs/",
"license": "MIT",
"bugs": {
"url": "http://github.com/MorganConrad/fcs/issues"
}
}