-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
78 lines (78 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@scaleleap/amazon-advertising-api-sdk",
"version": "3.8.4",
"description": "Amazon Advertising API TypeScript and Node.js Unofficial SDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"prebuild": "npm run clean",
"postversion": "ts-node --transpile-only --pretty utils/bump-version.ts",
"build": "tsc --build tsconfig.build.json",
"docs": "typedoc",
"clean": "rimraf lib",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .js,.ts src test examples",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"api-extractor": "api-extractor run --local --verbose",
"semantic-release": "npx @scaleleap/semantic-release-config",
"test:passthrough": "cross-env POLLY_MODE=passthrough npm test -- -t 'polly:passthrough'",
"dev:refresh-token": "ts-node test/refresh-token.ts"
},
"keywords": [
"amazon advertising",
"amazon advertising api",
"sponsored display",
"sponsored products",
"sponsored brands"
],
"author": "",
"license": "MIT",
"dependencies": {
"@scaleleap/amazon-marketplaces": "^18.0.1",
"agentkeepalive": "4.5.0",
"axios": "0.28.1",
"client-oauth2": "4.3.3",
"fp-ts": "2.16.9",
"http-status-codes": "2.3.0",
"io-ts": "2.2.21",
"io-ts-promise": "2.0.2",
"io-ts-reporters": "1.2.2",
"io-ts-types": "0.5.19",
"lazy-get-decorator": "2.2.1",
"lodash": "4.17.21",
"ts-error": "1.0.6"
},
"devDependencies": {
"@microsoft/api-extractor": "7.47.11",
"@scaleleap/config": "2.0.8",
"@scaleleap/jest-polly": "1.5.27",
"@scaleleap/semantic-release-config": "1.1.41",
"@types/jest": "27.4.0",
"@types/lodash": "4.17.13",
"@types/node": "18.19.50",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-prettier": "5.2.1",
"jest": "26.6.3",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "19.0.5",
"ts-jest": "26.5.6",
"ts-node": "10.9.2",
"tsconfigs": "4.0.2",
"typedoc": "0.26.11",
"typescript": "5.6.3"
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@scaleleap/semantic-release-config"
}
}