This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 1.93 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
95
{
"name": "@bizon/mws-sdk",
"version": "6.0.1",
"main": "index.js",
"description": "SDK for Amazon Marketplace Web Services",
"homepage": "https://github.com/bizon/mws-sdk#readme",
"license": "MIT",
"keywords": [
"amazon",
"amazon-marketplace",
"amazon-mws",
"mws",
"sellercentral"
],
"scripts": {
"test": "TZ=UTC jest"
},
"files": [
"index.js",
"lib/**/*.js"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bizon/mws-sdk.git"
},
"author": "Bertrand Marron <[email protected]>",
"dependencies": {
"@bizon/amazon-ids": "^2.14.0",
"content-type": "^1.0.4",
"csv-parse": "^5.3.2",
"date-fns": "^2.29.3",
"debug": "^4.3.4",
"got": "^11.8.5",
"iconv-lite": "^0.6.3",
"libxmljs2": "^0.31.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@bizon/semantic-release-config": "^1.2.0",
"eslint-config-xo-bizon": "^1.1.1",
"jest": "^29.3.1",
"mockdate": "^3.0.5",
"nock": "^13.2.9",
"semantic-release": "^19.0.5",
"xo": "^0.53.0"
},
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/bizon/mws-sdk/issues"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/__tests__/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__helpers__/"
],
"globalSetup": "./jest.setup.js",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"index.js"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"xo": {
"extends": "xo-bizon",
"semicolon": false,
"space": 2,
"overrides": [
{
"files": "__tests__/**/*.js",
"envs": [
"jest"
]
}
],
"prettier": true
},
"prettier": {
"printWidth": 100
},
"release": {
"extends": "@bizon/semantic-release-config"
}
}