This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
105 lines (105 loc) · 2.85 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "fhir-works-on-aws-authz-smart",
"version": "3.1.4",
"description": "FHIR Works on AWS SMART on FHIR authorization",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": {
"name": "Amazon Web Services",
"email": "[email protected]",
"url": "https://aws.amazon.com/"
},
"contributors": [
"Robert Smayda <[email protected]>",
"Tim Nguyen <[email protected]>",
"Nestor Carvantes <[email protected]>"
],
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"lint-fix": "eslint --fix . --ext .ts,.tsx",
"build": "tsc",
"watch": "tsc -w",
"test": "jest --silent",
"test-coverage": "jest --coverage",
"release": "yarn run build && yarn run lint && yarn run test",
"clean": "rm -rf build/* node_modules/* dist/* .serverless/* .nyc_output/* lib/*",
"local": "node .",
"prepublish": "tsc",
"standard-version": "standard-version --skip.tag=true"
},
"dependencies": {
"axios": "^0.21.4",
"fhir-works-on-aws-interface": "^11.1.0",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^1.12.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.161",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"axios-mock-adapter": "^1.18.2",
"csv-writer": "^1.6.0",
"fs": "0.0.1-security",
"json-2-csv": "^3.17.2",
"csv-load-sync": "^2.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"jest-mock-extended": "^1.0.8",
"jose": "^3.5.1",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"resolutions": {
"axios": "^0.21.4",
"set-value": "^4.0.1",
"ansi-regex": "^5.0.1",
"jsonwebtoken": "^9.0.0",
"json5": "^2.2.2",
"xml2js": "^0.5.0"
},
"jest": {
"testEnvironment": "node",
"moduleNameMapper": {
"^jose/(.*)$": "<rootDir>/node_modules/jose/dist/node/cjs/$1"
},
"moduleFileExtensions": [
"ts",
"js"
],
"coverageReporters": [
"text",
"html"
],
"transform": {
"\\.(ts)$": "ts-jest"
},
"testRegex": ".test.ts",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/src/comboTest/"
],
"testPathIgnorePatterns": [
"<rootDir>/src/comboTest/__snapshots__/",
"<rootDir>/node_modules/",
"<rootDir>/src/comboTest/testCaseUtil.test.ts"
]
},
"repository": {
"type": "git",
"url": "git://github.com/awslabs/fhir-works-on-aws-authz-smart.git"
},
"engines": {
"node": ">=12.0.0"
}
}