-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "qriffin",
"version": "0.0.0-development",
"description": "A CLI tool to upload file to your Dropbox and generate QR code for the shared link",
"main": "src/index.js",
"bin": {
"qriffin": "bin/qriffin"
},
"author": "kwrush (Kai Wang)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kwrush/qriffin.git"
},
"bugs": {
"url": "https://github.com/kwrush/qriffin/issues"
},
"scripts": {
"test": "jest",
"lint": "eslint --ignore-pattern .gitignore --max-warnings 0",
"format": "prettier --ignore-path .gitignore --write ."
},
"dependencies": {
"better-opn": "^2.0.0",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"configstore": "^5.0.1",
"dotenv": "^8.2.0",
"dropbox": "^8.1.0",
"node-fetch": "^2.6.1",
"ora": "^5.1.0",
"qrcode": "^1.4.4"
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"strip-ansi": "^6.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "coverage",
"testEnvironment": "node"
},
"engines": {
"node": ">= 10"
}
}