-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 947 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
43
44
45
46
47
48
49
50
51
52
{
"name": "@pavanjadhaw/up",
"version": "0.0.7",
"description": "a fast and minimal command line wrapper for sprk api",
"author": "Pavan Jadhaw <@pavanjadhaw>",
"main": "cli.js",
"bin": {
"up": "cli.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo"
},
"files": [
"cli.js",
"config.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pavanjadhaw/up.git"
},
"keywords": [
"cli",
"sprk",
"file",
"uploader"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pavanjadhaw/up/issues"
},
"homepage": "https://github.com/pavanjadhaw/up#readme",
"dependencies": {
"axios": "^0.21.1",
"form-data": "^2.3.3",
"meow": "^5.0.0",
"ora": "^3.0.0"
},
"devDependencies": {
"prettier": "^1.15.3",
"xo": "^0.23.0"
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node"
]
}
}