This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 KB
/
package.json
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
{
"private": true,
"scripts": {
"deploy": "ts-node-esm ./src/scripts/deploy.ts",
"test": "ava"
},
"name": "netsuite-polling-demo",
"type": "module",
"version": "0.0.1",
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@aws-sdk/types": "^3.310.0",
"@stedi/sdk-client-buckets": "^0.1.50",
"@stedi/sdk-client-events": "^0.1.50",
"@stedi/sdk-client-functions": "^0.1.50",
"@stedi/sdk-client-mappings": "^0.1.50",
"@stedi/sdk-client-stash": "^0.1.50",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.36",
"@types/object-hash": "^2.2.1",
"ava": "^4.3.1",
"aws-sdk-client-mock": "0.6.2",
"date-fns": "^2.29.2",
"date-fns-tz": "^1.3.6",
"dotenv": "^16.0.2",
"esbuild": "^0.14.27",
"jszip": "^3.10.0",
"lodash-es": "^4.17.21",
"nock": "^13.2.7",
"node-fetch": "^3.2.10",
"oauth": "^0.10.0",
"oauth-1.0a": "^2.2.6",
"object-hash": "^3.0.0",
"serialize-error": "^8.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"zod": "^3.21.4"
},
"volta": {
"node": "18.7.0",
"npm": "8.15.1"
},
"ava": {
"environmentVariables": {
"AWS_ACCESS_KEY_ID": "fake",
"AWS_SECRET_ACCESS_KEY": "false",
"FTP_BUCKET_NAME": "some-bucket-name-sftp",
"TYPE_SUITE_TO_PO_MAPPING_ID": "test-po-map-id",
"NS_REALM": "555000111",
"STEDI_FUNCTION_NAME": "test-function-name",
"NS_PO_STASH_KEYSPACE": "test-po-keyspace"
},
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"prettier": {
"useTabs": false
}
}