forked from rabix/cwl-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "cwlts",
"version": "1.23.2",
"description": "TypeScript data model for Common Workflow Language",
"scripts": {
"tsc": "npx tsc",
"test": "./node_modules/mocha/bin/_mocha --ui bdd -r ts-node/register ./src/**/*.spec.ts",
"coverage": "npm install istanbul && ./node_modules/typescript/bin/tsc --outDir ./compiled --declaration false && ./node_modules/istanbul/lib/cli.js cover -x '**/*.spec.js' _mocha ./compiled/**/*.spec.js",
"regenerate": "./node_modules/cwl-ts-parser/src/bin/generate.js ./src/mappings",
"schemas": "npm install cwl-ts-parser && scripts/schemas.sh",
"d2sb-test": "mocha src/tests/*.d2sb.spec.js",
"v1-test": "mocha src/tests/*.v1.spec.js",
"publish:prepare": "node ./scripts/prepublish.js && ./node_modules/typescript/bin/tsc",
"publish:dist": "npm run publish:prepare && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabix/cwl-ts.git"
},
"author": {
"name": "Maja Nedeljković",
"email": "[email protected]"
},
"contributors": [
{
"name": "Marijan Lekić",
"email": "[email protected]"
},
{
"name": "Ivan Batić",
"email": "[email protected]",
"url": "https://twitter.com/ivanbatic"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rabix/cwl-ts/issues"
},
"homepage": "https://github.com/rabix/cwl-ts#readme",
"dependencies": {
"ajv": "^6.1.1",
"js-yaml": "^3.10.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-spies": "^0.0.0",
"@types/fs-extra": "^5.0.0",
"@types/mocha": "^2.2.48",
"@types/node": "^8.9.1",
"@types/rimraf": "^2.0.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"fs-extra": "^5.0.0",
"istanbul": "^0.4.5",
"jsonschema": "^1.2.2",
"mocha": "^5.0.0",
"ts-node": "^4.1.0",
"typescript": "2.7.1",
"typescript-json-schema": "0.20.0"
},
"engines": {
"npm": "~5.5.0"
}
}