-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 987 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 987 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
34
35
36
37
38
39
{
"name": "genomediff",
"version": "1.7.0",
"description": "Parses strings from files in the GenomeDiff format generated by the breseq variant caller for haploid microbial organisms.",
"keywords": [
"genomediff",
"gd",
"biology",
"laboratory",
"genome",
"sequencing",
"parser",
"biojs"
],
"homepage": "",
"license": "MIT",
"author": {
"name": "Roland Groza",
"email": "rolandjitsu@gmail.com "
},
"main": "./dist/gd.js",
"files": ["dist"],
"repository": {
"type": "git",
"url": "https://github.com/biosustain/genomediff-node"
},
"scripts": {
"build": "typings install && rm -rf dist && tsc",
"test": "jasmine-node ./dist/ --color --verbose"
},
"devDependencies": {
"jasmine-node": "1.14.x",
"typings": "0.6.x",
"typescript": "next"
},
"engines": {
"node": "0.5.x"
}
}