-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "phyprojs",
"version": "0.0.1",
"description": "Advanced Phylogenetic Profile for Biologists - JS",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha 'src/*.tests.js'",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha src/*tests.js",
"eslint": "node_modules/.bin/eslint src/*.js; exit 0",
"eslint-pc": "node_modules/.bin/eslint src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daviortega/phyprojs.git"
},
"keywords": [
"bioinformatics"
],
"pre-commit": [
"eslint-pc"
],
"author": "Davi Ortega",
"contributors": [
{
"name": "Davi Ortega"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/daviortega/phyprojs/issues"
},
"homepage": "https://github.com/daviortega/phyprojs#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^3.15.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2"
}
}