forked from awslabs/fhir-works-on-aws-persistence-ddb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.43 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
{
"name": "fhir-works-on-aws-persistence-ddb",
"version": "3.2.1",
"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"
},
"dependencies": {
"@elastic/elasticsearch": "^7.4",
"@types/aws-lambda": "^8.10.63",
"aws-elasticsearch-connector": "^8.2.0",
"aws-sdk": "^2.610.0",
"aws-xray-sdk": "^3.1.0",
"fhir-works-on-aws-interface": "^7.0.0",
"flat": "^5.0.2",
"lodash": "^4.17.20",
"mime-types": "^2.1.26",
"promise.allsettled": "^1.0.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@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.11.1",
"@typescript-eslint/parser": "^4.11.1",
"aws-sdk-mock": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.3",
"jest-each": "^26.4.2",
"jest-mock-extended": "^1.0.8",
"prettier": "^1.19.1",
"sinon": "^9.2.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"coverageReporters": [
"text",
"html"
],
"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"
}
}