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
77 lines (77 loc) · 1.49 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
{
"name": "@bizon/mws-sdk",
"version": "2.0.1",
"main": "index.js",
"description": "SDK for Amazon Marketplace Web Services",
"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": "^1.1.1",
"content-type": "^1.0.4",
"csv-parse": "^4.4.1",
"date-fns": "^1.30.1",
"got": "^9.0.0",
"iconv-lite": "^0.5.0",
"jschardet": "^2.1.0",
"libxmljs": "^0.19.5"
},
"devDependencies": {
"codecov": "^3.3.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"xo": "^0.24.0"
},
"jest": {
"testMatch": [
"<rootDir>/__tests__/**/*.js"
],
"reporters": [
"default",
[
"jest-junit",
{
"output": "reports/tests/junit.xml"
}
]
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"index.js"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"xo": {
"semicolon": false,
"space": 2,
"overrides": [
{
"files": "__tests__/**/*.js",
"envs": [
"jest"
]
}
]
},
"bugs": {
"url": "https://github.com/bizon/mws-sdk/issues"
},
"homepage": "https://github.com/bizon/mws-sdk#readme",
"license": "MIT"
}