-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
37
38
39
40
41
42
43
44
45
46
{
"name": "@givengine/chrom-region",
"version": "0.4.2",
"description": "Chromosomal region class used in GIVE, supporting some basic region operations",
"main": "chromRegion.js",
"scripts": {
"test": "mocha",
"lint": "standard",
"posttest": "npm run lint",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zhong-Lab-UCSD/chrom-region.git"
},
"keywords": [
"region",
"genomics",
"chromosome"
],
"author": "Xiaoyi Cao",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Zhong-Lab-UCSD/chrom-region/issues"
},
"homepage": "https://github.com/Zhong-Lab-UCSD/chrom-region#readme",
"dependencies": {
"@log4js-node/log4js-api": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"grunt": "^1.0.4",
"grunt-babel": "^8.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"standard": "^12.0.1"
},
"standard": {
"env": [
"mocha"
]
}
}