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