-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.97 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.97 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
{
"name": "replicated-lib",
"version": "0.0.1-beta.17",
"description": "Can interact with the vendor portal api!",
"scripts": {
"build": "rm -rf dist && tsc --build",
"prettier": "npx prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "npx jest --coverage --verbose --setupFiles ./pacts/configuration.ts",
"create-object-store": "rm -rf examples/*.js && tsc examples/create-object-store.ts && node examples/create-object-store.js",
"create-postgres": "rm -rf examples/*.js && tsc examples/create-postgres.ts && node examples/create-postgres.js",
"expose-port": "rm -rf examples/*.js && tsc examples/expose-port.ts && node examples/expose-port.js",
"poll-airgap": "rm -rf examples/*.js && tsc examples/poll-for-airgap-build.ts && node examples/poll-for-airgap-build.js",
"test-list-customers": "rm -rf examples/*.js && npm run build && tsc examples/test-list-customers-by-name.ts && node examples/test-list-customers-by-name.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": "24.x"
},
"dependencies": {
"@actions/http-client": "^4.0.0",
"@types/node": "^25.5.0",
"base64-js": "^1.5.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"esbuild-jest": "^0.5.0",
"pako": "^2.1.0",
"ts-node": "^10.9.1",
"yaml": "^2.2.2"
},
"devDependencies": {
"@pact-foundation/pact": "^16.2.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^30.0.0",
"@types/pako": "^2.0.0",
"fs-extra": "^11.1.1",
"jest": "^30.3.0",
"jest-util": "^30.2.0",
"mockttp": "^4.2.1",
"prettier": "^3.8.1",
"ts-jest": "^29.1.0"
},
"overrides": {
"braces": "^3.0.3",
"micromatch": "^4.0.8",
"qs": "^6.14.1"
}
}