@ingeno/pipedream-services 1.0.84 → 1.0.95

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +25 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ingeno/pipedream-services",
3
- "version": "1.0.84",
3
+ "version": "1.0.95",
4
4
  "description": "Service utilities for Clarity data integrations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -36,27 +36,6 @@
36
36
  "README.md",
37
37
  "LICENSE"
38
38
  ],
39
- "scripts": {
40
- "build": "npm run clean && npm run build:tsc",
41
- "build:tsc": "tsc",
42
- "build:watch": "tsc -w",
43
- "lint": "eslint src/**/*.ts",
44
- "lint:fix": "eslint src/**/*.ts --fix",
45
- "clean": "rm -rf dist",
46
- "test": "vitest run",
47
- "test:watch": "vitest --watch",
48
- "test:ui": "vitest --ui",
49
- "test:coverage": "vitest run --coverage",
50
- "test:coverage:ui": "vitest --ui --coverage",
51
- "test:coverage:open": "pnpm test:coverage && open coverage/index.html",
52
- "db:test:start": "docker-compose -f docker-compose.test.yml up -d",
53
- "db:test:stop": "docker-compose -f docker-compose.test.yml down",
54
- "db:test:reset": "docker-compose -f docker-compose.test.yml down -v && docker-compose -f docker-compose.test.yml up -d",
55
- "db:test:logs": "docker-compose -f docker-compose.test.yml logs -f postgres-test",
56
- "db:test:shell": "docker compose -f docker-compose.test.yml exec postgres-test psql -U test_user -d clarity_test",
57
- "generate:lattice": "openapi --input src/lattice/lattice-swagger.json --output src/lattice/generated --client axios --name LatticeClient",
58
- "pub": "scripts/publish.sh"
59
- },
60
39
  "keywords": [
61
40
  "pipedream",
62
41
  "data-integration",
@@ -94,7 +73,6 @@
94
73
  "devDependencies": {
95
74
  "@aws-sdk/credential-providers": "^3.834.0",
96
75
  "@aws-sdk/types": "^3.973.7",
97
- "@ingeno/pipedream-simulator": "workspace:*",
98
76
  "@types/js-yaml": "^4.0.9",
99
77
  "@types/node": "^18.8.5",
100
78
  "@types/pg": "^8.15.4",
@@ -105,9 +83,31 @@
105
83
  "openapi-typescript-codegen": "^0.29.0",
106
84
  "tsx": "^4.19.0",
107
85
  "vite-tsconfig-paths": "^5.1.4",
108
- "vitest": "^3.2.4"
86
+ "vitest": "^3.2.4",
87
+ "@ingeno/pipedream-simulator": "1.0.0"
109
88
  },
110
89
  "publishConfig": {
111
90
  "access": "public"
91
+ },
92
+ "scripts": {
93
+ "build": "npm run clean && npm run build:tsc",
94
+ "build:tsc": "tsc",
95
+ "build:watch": "tsc -w",
96
+ "lint": "eslint src/**/*.ts",
97
+ "lint:fix": "eslint src/**/*.ts --fix",
98
+ "clean": "rm -rf dist",
99
+ "test": "vitest run",
100
+ "test:watch": "vitest --watch",
101
+ "test:ui": "vitest --ui",
102
+ "test:coverage": "vitest run --coverage",
103
+ "test:coverage:ui": "vitest --ui --coverage",
104
+ "test:coverage:open": "pnpm test:coverage && open coverage/index.html",
105
+ "db:test:start": "docker-compose -f docker-compose.test.yml up -d",
106
+ "db:test:stop": "docker-compose -f docker-compose.test.yml down",
107
+ "db:test:reset": "docker-compose -f docker-compose.test.yml down -v && docker-compose -f docker-compose.test.yml up -d",
108
+ "db:test:logs": "docker-compose -f docker-compose.test.yml logs -f postgres-test",
109
+ "db:test:shell": "docker compose -f docker-compose.test.yml exec postgres-test psql -U test_user -d clarity_test",
110
+ "generate:lattice": "openapi --input src/lattice/lattice-swagger.json --output src/lattice/generated --client axios --name LatticeClient",
111
+ "pub": "scripts/publish.sh"
112
112
  }
113
- }
113
+ }