-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
63 lines (63 loc) · 1.76 KB
/
deno.json
File metadata and controls
63 lines (63 loc) · 1.76 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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@flowcore/pathways",
"description": "A TypeScript Library for creating Flowcore Pathways, simplifying the integration with the flowcore platform",
"version": "2.1.0",
"license": "MIT",
"exports": "./src/mod.ts",
"publish": {
"include": [
"src/**/*.ts",
"README.md",
"CHANGELOG.md"
]
},
"tasks": {
"build:npm": "deno run -A bin/build-npm.ts",
"test": "deno test -A",
"test:watch": "deno test -A --watch",
"postgres:start": "deno run -A bin/start-postgres.ts",
"postgres:stop": "deno run -A bin/stop-postgres.ts",
"test:postgres": "deno run -A bin/start-postgres.ts && (deno test -A tests/postgres-pathway-state.test.ts || (deno run -A bin/stop-postgres.ts && exit 1)) && deno run -A bin/stop-postgres.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@flowcore/sdk-transformer-core": "npm:@flowcore/sdk-transformer-core@^2.5.1",
"bun-sqlite-key-value": "npm:bun-sqlite-key-value@^1.13.1",
"file-type": "npm:file-type@^21.0.0",
"node-cache": "npm:node-cache@^5.1.2",
"rxjs": "npm:rxjs@^7.8.1",
"@flowcore/data-pump": "jsr:@flowcore/data-pump@^0.19.0",
"@flowcore/sdk": "npm:@flowcore/sdk@^1.78.0",
"postgres": "npm:postgres@^3.4.3",
"ws": "npm:ws@^8.18.0",
"zod": "npm:zod@^3.25.63"
},
"fmt": {
"exclude": [
"node_modules",
"npm"
],
"lineWidth": 120,
"indentWidth": 2,
"useTabs": false,
"semiColons": false
},
"lint": {
"exclude": [
"node_modules",
"npm",
"tests"
]
},
"test": {
"include": [
"tests/**/*_test.ts",
"tests/**/*.test.ts"
],
"exclude": [
"node_modules",
"npm"
]
}
}