-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.9 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.9 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
{
"name": "@boilingdata/node-boilingdata",
"version": "1.0.31",
"description": "BoilingData WebSocket client for Node and browser",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"author": "BoilingData",
"license": "MIT",
"private": false,
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/boilingdata/node-boilingdata.git"
},
"keywords": [
"BoilingData",
"DuckDB",
"Serverless",
"Lambda",
"S3",
"Parquet",
"CSV",
"JSON",
"ETL"
],
"scripts": {
"release": "standard-version",
"prebuild": "yarn install --frozen-lockfile",
"build": "yarn build:node && yarn build:browser",
"build:node": "rimraf dist/ && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build:browser": "rimraf browser/ && webpack",
"build:watch": "npx onchange 'src/**/*.ts' -- yarn build",
"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",
"preupdate-integration": "yarn build",
"update-integration": "rsync -av --exclude integration-tests . integration-tests/node_modules/@dforsber/s3-selectable/",
"test:watch": "yarn test -- --watchAll",
"test:badges": "npx jest-coverage-badges output ./badges",
"clean": "rimraf dist/ node_modules/ coverage/"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"dependencies": {
"@aws-crypto/sha256-browser": "^5.2.0",
"@aws-sdk/client-cognito-identity": "^3.645.0",
"@aws-sdk/credential-provider-cognito-identity": "^3.645.0",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/signature-v4": "^3.374.0",
"amazon-cognito-identity-js": "^6.3.12",
"isomorphic-ws": "^5.0.0",
"json-bigint": "^1.0.0",
"standard-version": "^9.5.0",
"uuid": "^8.3.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@swc/core": "^1.7.24",
"@swc/jest": "^0.2.36",
"@types/jest": "^27.4.1",
"@types/json-bigint": "^1.0.2",
"@types/node": "^20.0.0",
"@types/uuid": "^8.3.4",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"browserify": "^17.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.1.1",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-loader": "^9.5.1",
"typescript": "^4.1.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"bugs": {
"url": "https://github.com/boilingdata/node-boilingdata/issues"
},
"homepage": "https://www.boilingdata.com/"
}