forked from bioinformatics-ua/dicoogle-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.14 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "dicoogle-client",
"author": "Universidade de Aveiro, DETI/IEETA, Bioinformatics Group (http://bioinformatics.ua.pt/)",
"maintainers": [
"Eduardo Pinho <[email protected]>"
],
"contributors": [
"Eduardo Pinho <[email protected]>",
"Luís Bastião Silva <[email protected]>"
],
"description": "Dicoogle client API for JavaScript applications",
"keywords": [
"dicoogle",
"client",
"api"
],
"version": "5.0.0",
"engines": {
"node": ">=10.0.0"
},
"main": "./lib/index",
"types": "./lib/index.d.ts",
"browserify": {
"transforms": [
"envify"
]
},
"files": [
"bin/",
"lib/"
],
"bin": {
"dicoogle-query": "bin/dicoogle-query-cli.js"
},
"license": "GPL-3.0+",
"dependencies": {
"@types/superagent": "^4.1.7",
"superagent": "^5.2.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"browserify": "^16.5.1",
"chai": "^4.1.2",
"coveralls": "^3.0.11",
"cross-env": "^7.0.2",
"envify": "^4.0.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-rm": "^2.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.0",
"ts-node": "^8.8.1",
"typedoc": "^0.17.3",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"check": "gulp --series lint",
"build": "gulp --series lint main bundle",
"prepare": "gulp default",
"clean": "gulp clean",
"document": "typedoc ./src/",
"test": "cross-env NODE_ENV=test mocha -r ts-node/register",
"cover": "cross-env NODE_ENV=test nyc --reporter=html --reporter=lcov --reporter=text mocha -r ts-node/register",
"coveralls": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/bioinformatics-ua/dicoogle-client-js.git"
},
"nyc": {
"extension": [
".js",
".ts"
],
"exclude": [
"gulpfile.js",
"test/*"
]
}
}