-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "node-mist3",
"version": "1.6.4",
"description": "Helper package to deal with MiST3 API",
"main": "src/index.js",
"scripts": {
"test": "NODE_PATH=node_modules node_modules/.bin/nyc node_modules/.bin/mocha --reporter mocha-pretty-bunyan-nyan $(find src -name '*tests.js')",
"mocha": "NODE_PATH=node_modules node_modules/.bin/mocha --reporter mocha-pretty-bunyan-nyan $(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/node-mist3.git"
},
"keywords": [
"mist3",
"bioinformatics"
],
"author": "Davi Ortega",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/biowonks/node-mist3/issues"
},
"homepage": "https://github.com/biowonks/node-mist3#readme",
"devDependencies": {
"bunyan": "^1.8.12",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"mocha": "^4.1.0",
"mocha-pretty-bunyan-nyan": "^1.0.4",
"nyc": "^13.0.0"
},
"dependencies": {
"debug": "^3.1.0",
"dtrace-provider": "^0.8.7",
"through2": "^2.0.3"
}
}