firefox-sync-cli/package.json

33 lines
638 B
JSON
Raw Normal View History

2021-10-16 15:05:52 +02:00
{
"name": "firefox-sync-cli",
2021-10-17 21:52:20 +02:00
"version": "1.0.1",
2021-10-16 15:05:52 +02:00
"description": "Manage Firefox Sync from the CLI! ✨",
"license": "Unlicense",
"author": "Val (https://val.codejam.info)",
"files": [
"cli.js",
"ffs",
"oauth.js",
"password.js",
"prompt.js"
],
"bin": {
"ffs": "ffs"
},
"repository": "valeriangalliat/firefox-sync-cli",
"scripts": {
"lint": "standard"
},
"dependencies": {
"commander": "^8.2.0",
2021-10-17 21:52:12 +02:00
"firefox-sync": "^1.1.0",
2021-10-16 15:05:52 +02:00
"ini": "^2.0.0",
"prompts": "^2.4.2",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"standard": "^16.0.4"
}
}