forked from MKRhere/bin
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
35 lines (35 loc) · 812 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
{
"name": "@codefeathers/bin",
"version": "1.0.0",
"description": "A tiny, sensible hastebin alternative",
"main": "app.js",
"scripts": {
"start": "node -r dotenv/config app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codefeathers/bin.git"
},
"keywords": [
"hastebin",
"pastebin",
"paste",
"notes"
],
"author": "Muthu Kumar <@MKRhere> (https://mkr.pw)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codefeathers/bin/issues"
},
"homepage": "https://github.com/codefeathers/bin#readme",
"dependencies": {
"dotenv": "^8.1.0",
"express": "^4.16.3",
"helmet": "^3.13.0",
"highlight.js": "^9.12.0",
"mithril": "^1.1.6",
"mithril-node-render": "^2.3.0",
"mongoose": "^5.2.17"
}
}