-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
74 lines (74 loc) · 2.06 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
{
"name": "@scaleleap/amazon-marketplaces",
"description": "A collection of Amazon Marketplace data objects.",
"license": "MIT",
"author": {
"name": "Roman Filippov",
"email": "roman@scaleleap.com",
"url": "https://www.scaleleap.com/"
},
"homepage": "https://github.com/ScaleLeap/amazon-marketplaces#readme",
"repository": {
"type": "git",
"url": "git@github.com:ScaleLeap/amazon-marketplaces.git"
},
"bugs": {
"url": "https://github.com/ScaleLeap/amazon-marketplaces/issues"
},
"version": "18.0.1",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"build:docs": "typedoc",
"clean": "rimraf lib",
"lint": "eslint --ext ts,js src/ test/",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "npx @scaleleap/semantic-release-config",
"test": "jest"
},
"types": "lib/index.d.ts",
"dependencies": {
"@lavadrop/ensure": "1.0.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@scaleleap/semantic-release-config": "1.1.41",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"danger": "12.3.3",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sonarjs": "3.0.1",
"eslint-plugin-unicorn": "56.0.1",
"jest": "29.7.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"tsconfigs": "4.0.2",
"typedoc": "0.27.5",
"typescript": "5.7.2"
},
"keywords": [
"amazon",
"amazon-advertising",
"amazon-advertising-api",
"amazon-marketplace",
"amazon-mws",
"marketplace",
"mws"
],
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@scaleleap/semantic-release-config"
}
}