forked from aws-solutions/research-service-workbench-on-aws
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.54 KB
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
{
"name": "@aws/workbench-core-datasets",
"version": "0.1.2",
"description": "Access and management of data files for the purpose of connecting to various AWS environments.",
"homepage": "https://github.com/awslabs/solution-spark-on-aws",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/solution-spark-on-aws.git"
},
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "http://aws.amazon.com"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "heft build --clean && rushx pkg-json-lint",
"build:test": "heft test --clean && rushx pkg-json-lint && rushx make-badges",
"depcheck": "depcheck",
"lint:fix": "eslint . --fix",
"make-badges": "istanbul-badges-readme --coverageDir=./temp/coverage --exitCode=1",
"pkg-json-lint": "npmPkgJsonLint -c ../../.npmpackagejsonlintrc.json .",
"sort-package-json": "sort-package-json package.json",
"test": "rushx test:only && rushx make-badges",
"test:only": "heft test --clean --no-build"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": ".test.ts",
"transform": {
"\\.(ts)$": "ts-jest"
}
},
"dependencies": {
"@aws-cdk/aws-iam": "^1.159.0",
"@aws-sdk/client-dynamodb": "^3.118.1",
"@aws-sdk/client-kms": "^3.118.1",
"@aws-sdk/client-s3": "^3.118.1",
"@aws-sdk/client-s3-control": "^3.118.1",
"@aws-sdk/types": "^3.110.0",
"@aws/workbench-core-audit": "workspace:*",
"@aws/workbench-core-base": "workspace:*",
"@aws/workbench-core-logging": "workspace:*",
"@hapi/boom": "^10.0.0",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"uuid": "^8.3.2"
},
"devDependencies": {
"@aws/eslint-config-workbench-core-eslint-custom": "workspace:*",
"@rushstack/eslint-config": "^2.5.1",
"@rushstack/heft": "^0.45.0",
"@rushstack/heft-jest-plugin": "^0.2.3",
"@rushstack/heft-node-rig": "^1.7.1",
"@types/heft-jest": "1.0.2",
"@types/lodash": "^4.14.181",
"@types/node": "^14",
"@types/triple-beam": "^1.3.2",
"@types/uuid": "^8.3.4",
"aws-sdk-client-mock": "^0.6.2",
"depcheck": "^1.4.3",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.26.0",
"fast-check": "^2.24.0",
"istanbul-badges-readme": "1.8.1",
"jest": "^27.5.1",
"jest-fast-check": "^1.0.2",
"npm-package-json-lint": "^6.3.0",
"npm-package-json-lint-config-default": "^5.0.0",
"sort-package-json": "^1.57.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.2"
}
}