This repository was archived by the owner on Jul 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.78 KB
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
{
"name": "transfer.js",
"version": "0.5.3",
"description": "Fork of transfer-sh, a CLI tool for easy file sharing with https://transfer.sh",
"main": "index.js",
"files": [
"bin/",
"lib/"
],
"directories": {
"lib": "lib",
"bin": "bin",
"test": "tests"
},
"preferGlobal": true,
"bin": {
"transfer-js": "bin/transfer.js"
},
"scripts": {
"cover": "nyc report -r text-lcov | codecov -l --disable=gcov",
"docs": "nyc report -r html && jsdoc -c .jsdoc.json",
"lint": "eslint bin/*.js lib/*.js tests/*.js",
"test": "nyc -r text-summary mocha -t 35000 tests/test.js --exit"
},
"keywords": [
"transfer",
"transfer.sh",
"cli",
"upload",
"file",
"sharing"
],
"repository": "github:ObserverOfTime/transfer.js",
"author": "ObserverOfTime <chronobserver@disroot.org>",
"license": "ISC",
"bugs": "https://github.com/ObserverOfTime/transfer.js/issues",
"homepage": "https://observeroftime.github.io/transfer.js",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"cli-progress": "^3.8.2",
"clipboardy": "^2.3.0",
"got": "^10.7.0",
"handlebars": "^4.7.6",
"mime-types": "^2.1.27",
"minimist": "^1.2.5",
"progress-promise": "^0.0.6"
},
"devDependencies": {
"@reconbot/jsdoc-theme": "^1.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.7.1",
"eslint": "^6.8.0",
"jsdoc": "^3.6.4",
"mocha": "^8.0.1",
"nyc": "^15.1.0"
},
"resolutions": {
"lodash": "^4.17.19"
},
"nyc": {
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 75,
"include": [
"lib/*.js"
],
"report-dir": "docs/coverage",
"cache": true
}
}