-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
{
"name": "genome-nexus-cli",
"version": "0.0.14",
"description": "Genome Nexus Command Line Interface",
"main": "./bin/genome-nexus",
"repository": "https://github.com/genome-nexus/genome-nexus-cli",
"author": "inodb",
"license": "MIT",
"private": false,
"dependencies": {
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/line-reader": "^0.0.28",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"commander": "^5.0.0",
"figlet": "^1.2.4",
"genome-nexus-ts-api-client": "^1.1.5",
"inquirer": "^7.0.0",
"line-reader": "^0.4.0",
"lodash": "^4.17.15",
"n-readlines": "^1.0.0",
"path": "^0.12.7"
},
"bin": {
"genome-nexus": "./bin/genome-nexus",
"genome-nexus-annotate": "./bin/genome-nexus-annotate"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/node": "^12.11.1",
"jest": "^24.9.0",
"json": "^9.0.6",
"nodemon": "^1.19.4",
"pkg": "^4.4.0",
"prettier": "^1.18.2",
"swagger-js-codegen": "git+https://github.com/cBioPortal/swagger-js-codegen.git#0362f4a1e2d116ad6dffc36e4b57cdfbc93956cf",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "yarn run build && yarn run test",
"build": "tsc -p . && cp package.json lib/",
"test": "jest",
"refresh": "rm -rf ./node_modules ./yarn.lock && yarn install",
"prettier": "prettier --config ./.prettierrc.js --write './src/**'",
"test-prettier": "prettier --config ./.prettierrc.js -c './src/**'",
"test-run": "./bin/genome-nexus annotate 17:g.41242962_41242963insGA"
}
}