forked from johnpapa/lite-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "lite-server",
"version": "2.2.2",
"description": "Lightweight development node server for serving a web app, providing a fallback for browser history API, loading in the browser, and injecting scripts on the fly.",
"main": "index.js",
"scripts": {
"test": "eslint *.js lib/*.js && istanbul cover _mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnpapa/lite-server.git"
},
"keywords": [
"angular",
"spa",
"static",
"server",
"development"
],
"contributors": [
"John Papa <[email protected]>",
"Christopher Martin <[email protected]>"
],
"license": "MIT",
"bin": {
"lite-server": "./bin/lite-server"
},
"homepage": "https://github.com/johnpapa/lite-server#readme",
"dependencies": {
"browser-sync": "^2.12.3",
"connect-history-api-fallback": "^1.2.0",
"connect-logger": "0.0.1",
"lodash": "^4.11.1",
"minimist": "1.2.0"
},
"devDependencies": {
"eslint": "^2.8.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mockery": "^1.6.2",
"sinon": "^1.17.3"
}
}