-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
47
48
49
50
{
"name": "pfql",
"version": "1.2.1",
"description": "PFQL - Protein Feature Query Language",
"main": "index.js",
"scripts": {
"test": "NODE_PATH=node_modules node_modules/.bin/nyc node_modules/.bin/mocha --reporter ${MOCHA_REPORTER-spec} $(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/pfql.git"
},
"nyc": {
"exclude": [
"src/**tests.js"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/biowonks/pfql/issues"
},
"author": "BioWonks",
"contributors": [
{
"name": "Luke Ulrich"
},
{
"name": "Ogun Adebali"
},
{
"name": "Davi Ortega"
},
{
"name": "Amit Upadhyay"
}
],
"dependencies": {
"bunyan": "^1.8.8",
"lodash": "^4.17.5"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.14.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^11.6.0"
}
}