-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.97 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
{
"name": "dicoogle-client",
"author": "Universidade de Aveiro, DETI/IEETA, Bioinformatics Group (http://bioinformatics.ua.pt/)",
"maintainers": [
"Eduardo Pinho <eduardopinho@bmd-software.com>"
],
"contributors": [
"Eduardo Pinho <eduardopinho@bmd-software.com>",
"Luís Bastião Silva <bastiao@bmd-software.com>"
],
"description": "Dicoogle client API for JavaScript applications",
"keywords": [
"dicoogle",
"client",
"api"
],
"version": "6.0.0-rc.2",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"main": "./lib/index.js",
"type": "module",
"types": "./lib/index.d.ts",
"files": [
"bin/",
"lib/"
],
"bin": {
"dicoogle-query": "bin/dicoogle-query-cli.js"
},
"license": "GPL-3.0+",
"dependencies": {
"@types/superagent": "^4.1.15",
"superagent": "^8.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.2",
"@types/node": "^16.18.55",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"c8": "^8.0.1",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"mocha": "^10.2.0",
"nock": "^12.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"scripts": {
"check": "eslint --fix src/ test/*.ts test/mock/*.ts",
"strictCheck": "eslint src/ test/*.ts test/mock/*.ts",
"build": "npm run check && npm run prepare",
"prepare": "tsc",
"clean": "rimraf dist lib coverage .nyc_output docs",
"document": "typedoc",
"test": "cross-env NODE_ENV=test mocha",
"cover": "cross-env NODE_ENV=test c8 --reporter=html --reporter=lcov --reporter=text mocha",
"coveralls": "cross-env NODE_ENV=test c8 report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/bioinformatics-ua/dicoogle-client-js.git"
},
"homepage": "https://www.dicoogle.com"
}