-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 KB
/
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
{
"name": "mist3-to-pfql",
"version": "0.2.0",
"description": "Parse MiST3 standard output to make it compatible with PFQL",
"main": "index.js",
"scripts": {
"test": "NODE_PATH=node_modules node_modules/.bin/nyc node_modules/.bin/mocha $(find src -name '*tests.js')",
"mocha": "NODE_PATH=node_modules node_modules/.bin/mocha $(find src -name '*tests.js')",
"coverage": "NODE_PATH=node_modules node_modules/.bin/nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biowonks/mist3-to-pfql.git"
},
"keywords": [
"biowonks",
"bioinformatics",
"parser"
],
"author": "Davi Ortega",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/biowonks/mist3-to-pfql/issues"
},
"homepage": "https://github.com/biowonks/mist3-to-pfql#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^5.0.1",
"mocha": "^4.0.1",
"nyc": "^13.0.0"
},
"dependencies": {
"bunyan": "^1.8.12"
}
}