-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "org.w3id.cwl.salad",
"version": "0.0.1-SNAPSHOT",
"description": "This project contains TypeScript objects and utilities auto-generated by <a href=\"https://github.com/common-workflow-language/schema_salad\">Schema Salad</a> for parsing documents corresponding to the https://w3id.org/cwl/salad# schema.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "nyc --reporter=lcov mocha --require ts-node/register src/test/**/*.ts",
"doc": "rimraf ./docs && typedoc src/index.ts"
},
"license": "Apache License, Version 2.0",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/js-yaml": "^4.0.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/node-fetch": "^2.5.12",
"@types/sinon": "^10.0.6",
"@types/uuid": "^8.3.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.4.4",
"codecov.io": "^0.1.6",
"rimraf": "^3.0.2"
},
"dependencies": {
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.6",
"uri-js": "^4.4.1",
"uuid": "^8.3.2"
},
"files": [
"/dist"
]
}