-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.41 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
63
64
65
66
67
{
"name": "swank",
"version": "1.4.1",
"description": "Simple static server with livereload and tunneling options",
"main": "swank.js",
"dependencies": {
"chokidar": "^3.4.0",
"colors": "^1.0.3",
"connect": "^3.7.0",
"connect-livereload": "^0.6.1",
"debounce": "^1.0.0",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"nopt": "^3.0.1",
"open": "^7.4.2",
"readline-stream": "^1.0.2",
"serialize-javascript": ">=3.1.0",
"serve-static": "^1.14.1",
"tiny-lr": "^1.1.1"
},
"devDependencies": {
"chai": "^2.0.0",
"chai-as-promised": "^7.1.1",
"coffee-script": "^1.10.0",
"express": "^4.13.3",
"mocha": "^8.0.1",
"request": "^2.53.0",
"rimraf": "^2.3.1",
"standard": "^14.3.4"
},
"scripts": {
"test": "mocha --exit test/test.js",
"lint": "standard"
},
"author": "charles@rabidaudio.com",
"license": "MIT",
"bin": {
"swank": "bin/swank"
},
"standard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabidaudio/swank.git"
},
"keywords": [
"webserver",
"static",
"server",
"SimpleHTTPServer",
"ngrok",
"tunnel",
"watch",
"livereload",
"live-reload"
],
"bugs": {
"url": "https://github.com/rabidaudio/swank/issues"
},
"homepage": "https://github.com/rabidaudio/swank",
"directories": {
"test": "test"
}
}