-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.26 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.26 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
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
106
107
108
109
{
"name": "@boilingdata/boilingdata-bdcli",
"version": "1.1.6",
"description": "BoilingData command-line client - bdcli",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"preferGlobal": true,
"files": [
"dist/*"
],
"bin": {
"bdcli": "./dist/esm/index.js"
},
"engines": {
"node": ">= 18"
},
"repository": {
"type": "git",
"url": "https://github.com/boilingdata/boilingdata-bdcli"
},
"keywords": [
"BoilingData",
"AWS",
"Big Data & Analytics"
],
"author": "Dan Forsberg <dan@boilingdata.com>",
"type": "module",
"license": "MIT",
"private": false,
"standard-version": {
"scripts": {
"postbump": "yarn build && git add -f dist/"
}
},
"scripts": {
"release": "standard-version -a",
"prebuild": "rm -rf dist/ && node generateVersionFile.js && npx ts-interface-builder src/integration/boilingdata/dataset.interface.ts && npx ts-interface-builder src/integration/boilingdata/sandbox-template.types.ts",
"build": "rm -rf dist/ && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && chmod 755 dist/esm/index.js",
"prettier": "prettier --check 'src/**/*.{js,ts}'",
"prettier:fix": "prettier --write 'src/**/*.{js,ts}'",
"lint": "yarn prettier && eslint \"./src/**/*.ts\"",
"lint:fix": "yarn lint --quiet --fix",
"lint:watch": "npx onchange 'src/**/*.ts' -- yarn lint",
"test": "jest",
"test:watch": "yarn test -- --watchAll",
"test:badges": "npx jest-coverage-badges output ./badges"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"dependencies": {
"@aws-amplify/core": "^3.8.8",
"@aws-sdk/client-cognito-identity": "^3.533.0",
"@aws-sdk/client-iam": "^3.533.0",
"@aws-sdk/client-sts": "^3.533.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.533.0",
"@boilingdata/node-boilingdata": "^1.0.20",
"amazon-cognito-identity-js": "^6.3.4",
"aws-jwt-verify": "^4.0.0",
"chalk": "^4.0.0",
"commander": "^11.0.0",
"cron-schedule": "^4.0.0",
"cron-validate": "^1.4.5",
"deepmerge": "^4.3.1",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.1",
"ms": "^2.1.3",
"ora": "^5.0.0",
"prompts": "^2.4.2",
"qrcode": "^1.5.3",
"ts-interface-checker": "^1.0.2",
"winston": "^3.10.0"
},
"devDependencies": {
"@commander-js/extra-typings": "^11.0.0",
"@swc/core": "^1.3.78",
"@swc/jest": "^0.2.29",
"@tsconfig/node-lts": "^18.12.4",
"@types/commander": "^2.12.2",
"@types/jest": "^29.5.4",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^9.0.2",
"@types/ms": "^0.7.31",
"@types/node": "18.16.0",
"@types/prompts": "^2.4.4",
"@types/qrcode": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"aws-sdk-client-mock": "^3.0.0",
"eslint": "^8.47.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^8.0.3",
"jest": "^29.6.3",
"markdown-toc": "^1.2.0",
"prettier": "^3.0.2",
"standard-version": "^9.5.0",
"ts-interface-builder": "^0.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}