-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
62 lines (62 loc) · 1.34 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "onionite",
"version": "1.1.3",
"description": "Explore the Tor network",
"main": "index.js",
"engines": {
"node": ">=6.3"
},
"dependencies": {
"ascii-chart": "1.3.3",
"clean-css": "4.1.11",
"compression": "1.7.2",
"express": "4.14.1",
"express-minify": "1.0.0",
"express-minify-html": "0.12.0",
"moment": "2.22.2",
"nunjucks": "3.1.2",
"onionoo": "2.0.2",
"pretty-bytes": "5.1.0",
"quick-lru": "^1.1.0"
},
"devDependencies": {
"eslint-config-xo-lukechilds": "^1.0.1",
"nodemon": "^1.10.2",
"xo": "^0.19.0"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon -e js,json,html",
"deploy": "now --public",
"alias": "now alias",
"test": "xo"
},
"xo": {
"extends": "xo-lukechilds",
"overrides": [
{
"files": "public/**",
"esnext": false
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/onionite.git"
},
"keywords": [
"explore",
"tor",
"network",
"explorer",
"onionite",
"onionoo"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/onionite/issues"
},
"homepage": "https://github.com/lukechilds/onionite#readme",
"private": true
}