-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1014 Bytes
/
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
{
"name": "pastebin",
"version": "1.0.0b",
"description": "Copy images, text, and entire directories to another device seamlessly and easily",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "npx eslint --fix .",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quantalabs/pastebin.git"
},
"keywords": [
"copy",
"paste",
"pastebin",
"file-transfer",
"sync"
],
"author": "Quantalabs (@QLabs)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Quantalabs/pastebin/issues"
},
"homepage": "https://github.com/Quantalabs/pastebin#readme",
"dependencies": {
"arg": "^5.0.1",
"formidable": "^3.2.4",
"mime-types": "^2.1.35",
"mv": "^2.1.1",
"open": "^8.4.0",
"qrcode": "^1.5.0"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.6.2"
}
}