-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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": "filepursuit-cli",
"description": "A Node.js command line app to interact with FilePursuit API.",
"version": "0.5.1",
"main": "bin/index.js",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node ./bin/index.js",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch"
},
"bin": {
"filepursuit": "./bin/index.js"
},
"author": {
"name": "Shashank Shekhar",
"email": "[email protected]",
"url": "https://ashwamegh.github.io"
},
"homepage": "https://github.com/ashwamegh/filepursuit-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/ashwamegh/filepursuit-cli.git"
},
"engines": {
"node": ">=16.14.0"
},
"readme": "https://github.com/ashwamegh/filepursuit-cli/README.md",
"funding": [
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/ashwameghwork"
},
{
"type": "patreon",
"url": "https://patreon.com/ashwamegh"
}
],
"dependencies": {
"chalk": "^5.2.0",
"command-exists": "^1.2.9",
"conf": "^11.0.1",
"node-fetch": "^3.3.1",
"open": "^9.1.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1"
}
}