-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 747 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 747 Bytes
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
{
"name": "snippetbin",
"version": "1.0.0",
"description": "A simple pastebin/gist like service (server side), with git as its backend",
"main": "service.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./scripts/setup.sh && node service.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amirgon/snippetbin.git"
},
"author": "Amir Gonnen",
"license": "MIT",
"bugs": {
"url": "https://github.com/amirgon/snippetbin/issues"
},
"homepage": "https://github.com/amirgon/snippetbin#readme",
"dependencies": {
"body-parser": "^1.19.0",
"bottleneck": "^2.19.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"log-timestamp": "^0.3.0"
}
}