-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
34 lines (34 loc) · 922 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
{
"name": "hastebin-gen",
"version": "2.0.5",
"description": "A simple hastebin client for uploading things to hastebin.com",
"main": "src/index.js",
"types": "typings/index.d.ts",
"keywords": ["hastebin", "haste-server", "haste", "paste"],
"scripts": {
"prepublishOnly": "yarn lint",
"test": "eslint src",
"lint": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrJacz/hastebin-gen.git"
},
"author": "Jacz <jacz@jaczaus.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrJacz/hastebin-gen/issues"
},
"homepage": "https://github.com/MrJacz/hastebin-gen#readme",
"private": false,
"devDependencies": {
"@types/node": "^12.0.3",
"eslint": "^6.0.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.1.1",
"typescript": "^3.5.1"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}