Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit 6885c9a

Browse files
committed
Change package.json indent to 2 spaces so that npm --save can be used.
1 parent cda11fe commit 6885c9a

File tree

2 files changed

+66
-65
lines changed

2 files changed

+66
-65
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ insert_final_newline = true
1212
trim_trailing_whitespace = false
1313

1414
[{package,bower}.json]
15-
indent_style = tab
16-
indent_size = 4
15+
indent_style = space
16+
indent_size = 2

package.json

Lines changed: 64 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,66 @@
11
{
2-
"name": "live-server",
3-
"version": "0.9.2",
4-
"description": "simple development http server with live reload capability",
5-
"keywords": [
6-
"front-end",
7-
"development",
8-
"tool",
9-
"server",
10-
"http",
11-
"cli"
12-
],
13-
"author": "Tapio Vierros",
14-
"dependencies": {
15-
"colors": "latest",
16-
"connect": "3.4.x",
17-
"cors": "latest",
18-
"serve-index": "^1.7.2",
19-
"morgan": "^1.6.1",
20-
"event-stream": "latest",
21-
"faye-websocket": "0.10.x",
22-
"object-assign": "latest",
23-
"opn": "latest",
24-
"send": "latest",
25-
"watchr": "2.3.x",
26-
"http-auth": "2.2.x"
27-
},
28-
"devDependencies": {
29-
"mocha": "^2.3.3",
30-
"supertest": "^1.0.1",
31-
"eslint": "^2.8.0",
32-
"jshint": "^2.9.2"
33-
},
34-
"scripts": {
35-
"lint": "eslint live-server.js index.js",
36-
"hint": "jshint live-server.js index.js",
37-
"test": "mocha test && npm run lint"
38-
},
39-
"bin": {
40-
"live-server": "./live-server.js"
41-
},
42-
"repository": {
43-
"type": "git",
44-
"url": "https://github.com/tapio/live-server.git"
45-
},
46-
"engines": {
47-
"node": ">=0.10.0"
48-
},
49-
"preferGlobal": true,
50-
"license": "MIT",
51-
"eslintConfig": {
52-
"env": {
53-
"node": true
54-
},
55-
"rules": {
56-
"quotes": 0,
57-
"curly": 0,
58-
"strict": 0,
59-
"no-process-exit": 0,
60-
"eqeqeq": 1,
61-
"no-unused-vars": 1,
62-
"no-shadow": 1
63-
}
64-
}
2+
"name": "live-server",
3+
"version": "0.9.2",
4+
"description": "simple development http server with live reload capability",
5+
"keywords": [
6+
"front-end",
7+
"development",
8+
"tool",
9+
"server",
10+
"http",
11+
"cli"
12+
],
13+
"author": "Tapio Vierros",
14+
"dependencies": {
15+
"colors": "latest",
16+
"connect": "3.4.x",
17+
"cors": "latest",
18+
"eslint": "^2.8.0",
19+
"event-stream": "latest",
20+
"faye-websocket": "0.10.x",
21+
"http-auth": "2.2.x",
22+
"morgan": "^1.6.1",
23+
"object-assign": "latest",
24+
"opn": "latest",
25+
"send": "latest",
26+
"serve-index": "^1.7.2",
27+
"watchr": "2.3.x"
28+
},
29+
"devDependencies": {
30+
"mocha": "^2.3.3",
31+
"supertest": "^1.0.1",
32+
"eslint": "^2.8.0",
33+
"jshint": "^2.9.2"
34+
},
35+
"scripts": {
36+
"lint": "eslint live-server.js index.js",
37+
"hint": "jshint live-server.js index.js",
38+
"test": "mocha test && npm run lint"
39+
},
40+
"bin": {
41+
"live-server": "./live-server.js"
42+
},
43+
"repository": {
44+
"type": "git",
45+
"url": "https://github.com/tapio/live-server.git"
46+
},
47+
"engines": {
48+
"node": ">=0.10.0"
49+
},
50+
"preferGlobal": true,
51+
"license": "MIT",
52+
"eslintConfig": {
53+
"env": {
54+
"node": true
55+
},
56+
"rules": {
57+
"quotes": 0,
58+
"curly": 0,
59+
"strict": 0,
60+
"no-process-exit": 0,
61+
"eqeqeq": 1,
62+
"no-unused-vars": 1,
63+
"no-shadow": 1
64+
}
65+
}
6566
}

0 commit comments

Comments
 (0)