-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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": "unipept-cli",
"version": "4.0.1",
"description": "Command line interface to the Unipept web services",
"repository": "git@github.com:unipept/unipept-cli.git",
"author": "Bart Mesuere <Bart.Mesuere@UGent.be>",
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"peptfilter": "./dist/bin/peptfilter.js",
"prot2pept": "./dist/bin/prot2pept.js",
"unipept": "./dist/bin/unipept.js",
"uniprot": "./dist/bin/uniprot.js"
},
"scripts": {
"build": "yarn run tsc",
"lint": "yarn run eslint",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' yarn run jest",
"typecheck": "yarn tsc --skipLibCheck --noEmit",
"peptfilter": "yarn run tsx bin/peptfilter.ts",
"prot2pept": "yarn run tsx bin/prot2pept.ts",
"unipept": "yarn run tsx bin/unipept.ts",
"uniprot": "yarn run tsx bin/uniprot.ts"
},
"files": [
"dist"
],
"dependencies": {
"commander": "^13.1.0",
"csv-stringify": "^6.5.0"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "9.x",
"globals": "^15.6.0",
"jest": "^29.7.0",
"mock-stdin": "^1.0.0",
"np": "^10.0.7",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsx": "^4.15.6",
"typescript": "^5.4.5",
"typescript-eslint": "^8.16.0"
}
}