-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "lightspeed-amazon-sync",
"version": "1.0.0",
"description": "A Node.js app to sync inventory counts between Lightspeed Retail and an Amazon merchant account",
"main": "start.js",
"scripts": {
"start": "node start.js",
"test": "nyc mocha 'test/**'",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosefBud/lightspeed-amazon-sync.git"
},
"keywords": [
"lightspeed",
"amazon",
"mws",
"inventory",
"count",
"sync"
],
"author": "Josef Budniakiewicz",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/JosefBud/lightspeed-amazon-sync/issues"
},
"homepage": "https://github.com/JosefBud/lightspeed-amazon-sync#readme",
"dependencies": {
"amazon-mws": "0.0.25",
"axios": "^0.19.2",
"nodemailer": "^6.4.2",
"onesignal-node": "^3.0.0",
"pdf-puppeteer": "^1.1.10",
"printer": "^0.4.0",
"sqlite3": "^4.1.1",
"url-encode-decode": "^1.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"decache": "^4.5.1",
"dotenv": "^8.2.0",
"mocha": "^7.0.1",
"mock-require": "^3.0.3",
"nyc": "^15.0.0"
}
}