-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "@openfn/integration-tests-worker",
"private": true,
"version": "1.0.95",
"description": "Lightning WOrker integration tests",
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
"type": "module",
"scripts": {
"clean": "rimraf dist tmp/repo/**",
"build:pack": "pnpm clean && cd ../.. && pnpm pack:local integration-tests/worker/dist --no-version",
"build": "pnpm build:pack && docker build --tag worker-integration-tests .",
"start": "docker run worker-integration-tests",
"test": "pnpm clean && npx ava -s --timeout 2m",
"test:cache": "npx ava -s --timeout 2m"
},
"dependencies": {
"@openfn/engine-multi": "workspace:^",
"@openfn/lightning-mock": "workspace:^",
"@openfn/logger": "workspace:^",
"@openfn/ws-worker": "workspace:^",
"@types/node": "^18.19.127",
"@types/rimraf": "^3.0.2",
"ava": "7.0.0",
"date-fns": "^2.30.0",
"koa": "^2.16.2",
"rimraf": "^6.1.3",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@types/koa": "^2.15.0"
}
}