-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 851 Bytes
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 851 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "hastebin-plus",
"version": "0.0.1",
"private": true,
"description": "Open-Source Pastebin Software, based on haste",
"keywords": [
"paste",
"pastebin",
"haste",
"hastebin",
"code",
"syntax highlighting"
],
"author": {
"name": "Marvin Menzerath",
"email": "marvin@menzerath.eu",
"url": "http://menzerath.eu/"
},
"main": "haste",
"dependencies": {
"clean-css": "4.1.11",
"connect": "^3.7.0",
"connect-route": "0.1.4",
"serve-static": "^2.2.1",
"uglify-js": "2.6.0",
"winston": "^3.19.0"
},
"engines": {
"node": ">=0.10.25",
"npm": ">=1.3.25"
},
"bin": {
"haste-server": "./server.js"
},
"files": [
"server.js",
"lib",
"static"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "node server.js"
}
}