-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 899 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
{
"name": "pasty",
"version": "1.1.0",
"description": "a cli for pastebin.com",
"main": "lib/main.js",
"directories": {
"lib": "lib"
},
"bin": {
"pasty": "bin/main.js"
},
"files": [
"lib/",
"bin/"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeF0x/pasty.git"
},
"keywords": [
"cli",
"pastebin",
"pastebin.com"
],
"author": "Tobias \"CodeF0x\" Oettl",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeF0x/pasty/issues"
},
"homepage": "https://github.com/CodeF0x/pasty#readme",
"dependencies": {
"inquirer": "^8.2.1",
"jsdom": "^19.0.0",
"node-fetch": "^2.6.7",
"table": "^6.8.0",
"yargs": "^17.4.0"
},
"devDependencies": {
"jest": "^27.5.1"
}
}