-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 KB
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.10",
"description": "TypeScript data model for Common Workflow Language",
"scripts": {
"tsc": "npx tsc",
"test": "npx nyc mocha --ui bdd -r ts-node/register ./src/**/*.spec.ts",
"coverage": "npx nyc report --reporter=text-summary --reporter=lcov",
"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",
"release:tag": "standard-version -a -t ''"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabix/cwl-ts.git"
},
"author": {
"name": "Maja Nedeljković",
"email": "maya.nedeljko@gmail.com"
},
"contributors": [
{
"name": "Marijan Lekić",
"email": "marijanlekic89@gmail.com"
},
{
"name": "Ivan Batić",
"email": "ivan.batic@live.com",
"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"
},
"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",
"nyc": "^15.1.0",
"standard-version": "^9.5.0",
"ts-node": "^4.1.0",
"typescript": "2.7.1",
"typescript-json-schema": "0.20.0"
},
"engines": {
"npm": "~5.5.0"
}
}