forked from betsol/spa-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 871 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
36
37
38
39
40
41
42
43
44
45
{
"name": "spa-server",
"version": "1.0.0",
"description": "Extensible Node Web Server to run your SPA's (Single Page Applications)",
"keywords": [
"web",
"server",
"webserver",
"middleware",
"connect",
"spa",
"http",
"gulp"
],
"author": "Slava Fomin II <s.fomin@betsol.ru>",
"repository": "betsol/spa-server",
"license": "MIT",
"dependencies": {
"connect": "^3.6.5",
"mime": "^1.4.1",
"serve-static": "^1.13.1",
"xtend": "^4.0.1",
"yargs": "^10.0.3",
"morgan": "^1.9.0"
},
"devDependencies": {
"cheerio": "^0.19.0",
"expect.js": "^0.3.1",
"mocha": "^2.2.1",
"request": "^2.54.0"
},
"files": [
"lib/",
"README.md",
"changelog.md",
"index.js",
"bin/"
],
"scripts": {
"test": "make test"
},
"bin": {
"spa-server": "./bin/spa-server"
}
}