-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 934 Bytes
/
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
{
"name": "ga-to-delegation",
"version": "0.1.2",
"description": "Generates a CWL Galaxy delegation workflow from a Galaxy workflow (.ga) file",
"author": "Adrian Zimmer",
"license": "MIT",
"main": "dist/main.js",
"preferGlobal": true,
"bin": {
"ga-to-delegation": "dist/main.js"
},
"files": [
"/dist"
],
"scripts": {
"start": "node dist/main.js",
"build": "rimraf dist/ && tsc && shx cp -r data dist/data",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/js-yaml": "^4.0.5",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"ts-node": "^10.4.0",
"ts-standard": "^11.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"cwl-ts-auto": "^0.1.3",
"js-yaml": "^4.1.0"
}
}