This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
129 lines (129 loc) · 3.71 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@ericblade/mws-advanced",
"version": "2.4.2",
"description": "Modern, fully featured, very opinionated node javascript Amazon MWS API based on @ericblade/mws-simple",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"url": "https://github.com/ericblade/mws-advanced"
},
"scripts": {
"coverage-codebeat": "./send-coverage",
"coverage": "./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/ts-mocha --timeout=60000",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint-staged": "npx lint-staged",
"make-docs-old": "npx esdoc && documentation build -f md > API.md",
"make-docs": "echo # Public API > docs-src/public-api.md && documentation build lib/index.js -f md --shallow >> docs-src/public-api.md && npx esdoc",
"make-docs-public": "documentation build lib/index.js lib/typedefs-public.js lib/constants.js --shallow --theme node_modules/documentation-devseed-theme -f html -o docs-src/public",
"push-master": "npm run coverage && git push origin master && send-coverage.cmd",
"test": "npx ts-mocha -p ./test/tsconfig.json --timeout=60000"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
],
"author": "Eric Blade <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@ericblade/mws-simple": "^5.1.2",
"es6-error": "^4.1.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/node": "^14.0.23",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-eslint": "^3.0.8",
"coveralls": "^3.1.0",
"documentation-devseed-theme": "^0.1.7",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-node": "^1.0.5",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"semantic-release": "^17.1.1",
"typescript": "^3.9.7",
"xml2js": "^0.4.23"
},
"keywords": [
"amazon merchant web services",
"amazon mws feeds",
"amazon mws finances",
"amazon mws fulfillment inbound shipment",
"amazon mws fulfillment inventory",
"amazon mws fulfillment outbound shipment",
"amazon mws orders",
"amazon mws products",
"amazon mws sellers",
"amazon mws",
"amazon-mws-async",
"amazon-mws-await",
"amazon-mws-client",
"amazon-mws-node-api",
"amazon-mws",
"amazon.com",
"amazon",
"amzn-mws",
"asin",
"async",
"es6",
"es7",
"fba",
"fbm",
"fullfilment by amazon",
"marketplace",
"mws-api-info",
"mws-api",
"mws-product",
"mws-sdk-async",
"mws-sdk-promises",
"mws",
"node-mws-sdk-meteor",
"node-mws-sdk",
"node-mws",
"node",
"nodejs",
"promise",
"promises",
"seller",
"sku"
],
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "eslint"
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"branch": "master",
"tagFormat": "${version}"
}
}