-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.72 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
{
"name": "ig-to-questionnaire",
"version": "0.0.1",
"description": "A CLI for generating FHIR Questionnaires for an IG",
"main": "build/app.js",
"files": [
"build/*"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "LOGGING=none jest --maxWorkers=4",
"test:watch": "LOGGING=none npm run test -- --watchAll",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"check": "npm run test && npm run lint && npm run prettier",
"prepare": "npm run build",
"prepublishOnly": "npm run check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcode/ig-to-questionnaire.git"
},
"bugs": {
"url": "https://github.com/mcode/ig-to-questionnaire/issues"
},
"homepage": "https://github.com/mcode/ig-to-questionnaire#readme",
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@ahryman40k/ts-fhir-types": "^4.0.32",
"@types/jest": "^26.0.0",
"@types/js-base64": "^2.3.1",
"@types/lodash": "^4.14.155",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.0.1",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"commander": "^5.1.0",
"cql-translation-service-client": "^0.5.0",
"fhirpath": "^2.2.1",
"js-base64": "^2.5.2",
"lodash": "^4.17.21",
"winston": "^3.2.1"
}
}