This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
94 lines (94 loc) · 2.53 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@scaleleap/amazon-mws-api-sdk",
"description": "📦 A fully typed TypeScript and Node.js SDK library for Amazon MWS API",
"license": "MIT",
"author": {
"name": "Roman Filippov",
"email": "[email protected]",
"url": "https://www.scaleleap.com/"
},
"contributors": [
{
"name": "Justin Emmanuel Mercado",
"email": "[email protected]",
"url": "https://github.com/justinemmanuelmercado"
},
{
"name": "Stanislav Iliev",
"url": "https://github.com/gigobyte"
}
],
"homepage": "https://github.com/ScaleLeap/amazon-mws-api-sdk/",
"repository": {
"type": "git",
"url": "[email protected]:ScaleLeap/amazon-mws-api-sdk.git"
},
"version": "2.0.11",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"preapi-extractor": "npm run build",
"api-extractor": "api-extractor run --local --verbose",
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf lib/* dist temp",
"dev": "ts-node-dev --respawn --transpileOnly src",
"lint": "eslint --ext ts,js src/ test/",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "npx @scaleleap/semantic-release-config",
"start": "ts-node --transpile-only --pretty src",
"test": "jest",
"test:unit": "jest unit/",
"test:watch": "jest --watchAll",
"postversion": "ts-node --transpile-only --pretty utils/bump-version.ts"
},
"types": "lib/index.d.ts",
"dependencies": {
"@scaleleap/amazon-marketplaces": "13.0.0",
"axios": "0.27.2",
"fast-xml-parser": "3.21.1",
"html-entities": "2.4.0",
"purify-ts": "1.1.0",
"ts-error": "1.0.6"
},
"devDependencies": {
"@microsoft/api-extractor": "7.38.0",
"@scaleleap/config": "2.0.8",
"@scaleleap/jest-polly": "1.5.59",
"@scaleleap/semantic-release-config": "1.1.35",
"@scaleleap/utils": "1.9.27",
"@semantic-release/exec": "6.0.3",
"@types/is-ci": "3.0.4",
"@types/jest": "27.0.3",
"@types/node": "16.18.79",
"ajv": "8.12.0",
"danger": "10.9.0",
"global-agent": "3.0.0",
"is-ci": "3.0.1",
"jest": "26.6.3",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"ts-node": "10.9.2",
"tsconfigs": "4.0.2",
"typescript": "4.2.4"
},
"keywords": [
"amazon marketplace web service",
"amazon mws",
"amazon mws api",
"amazon mws libraries",
"amazon mws sdk",
"fba",
"fbm",
"mws",
"mws api",
"mws sdk",
"nodejs",
"typescript"
],
"publishConfig": {
"access": "public"
}
}