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 23
/
package.json
95 lines (95 loc) · 2.66 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
{
"name": "fhir-works-on-aws-persistence-ddb",
"version": "3.12.0",
"description": "FHIR Works on AWS persistence DynamoDB implementation",
"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": {
"@elastic/elasticsearch": "7.13.0",
"@types/aws-lambda": "^8.10.83",
"aws-elasticsearch-connector": "^8.2.0",
"aws-sdk": "^2.1000.0",
"aws-xray-sdk": "^3.3.3",
"fhir-works-on-aws-interface": "^12.1.0",
"flat": "^5.0.2",
"lodash": "^4.17.20",
"mime-types": "^2.1.26",
"promise.allsettled": "^1.0.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@elastic/elasticsearch-mock": "^0.3.0",
"@types/flat": "^5.0.1",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.161",
"@types/mime-types": "^2.1.0",
"@types/node": "^12",
"@types/promise.allsettled": "^1.0.3",
"@types/sinon": "^9.0.0",
"@types/uuid": "^3.4.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"aws-sdk-mock": "^5.1.0",
"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-each": "^26.4.2",
"jest-mock-extended": "^1.0.8",
"prettier": "^2.4.1",
"sinon": "^9.2.2",
"standard-version": "^9.3.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"resolutions": {
"path-parse": "^1.0.7",
"set-value": "^4.0.1",
"json5": "2.2.3",
"xml2js":"^0.5.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"transform": {
"\\.(ts)$": "ts-jest"
},
"testRegex": ".test.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/awslabs/fhir-works-on-aws-persistence-ddb.git"
},
"engines": {
"node": ">=12.0.0"
}
}