Skip to content

Commit d0eedda

Browse files
committed
Adds homepage, repo and bugs fields to package.json
and adds an .editorconfig for consistent code styles.
1 parent 20584db commit d0eedda

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# For more information about the properties used in
2+
# this file, please see the EditorConfig documentation:
3+
# https://editorconfig.org/
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
indent_size = 2
11+
indent_style = space
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
15+
[*.md]
16+
trim_trailing_whitespace = false

package.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
"name": "create-html5-boilerplate",
33
"version": "0.0.6",
44
"description": "",
5+
"keywords": [],
6+
"homepage": "https://html5boilerplate.com/",
7+
"bugs": {
8+
"url": "https://github.com/h5bp/create-html5-boilerplate/issues"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/h5bp/create-html5-boilerplate.git"
13+
},
14+
"license": "ISC",
15+
"author": "Vlad Tansky",
516
"main": "index.js",
617
"bin": {
718
"create-html5-boilerplate": "./index.js"
@@ -10,9 +21,6 @@
1021
"test": "echo \"Error: no test specified\" && exit 1",
1122
"try": "node ./index.js"
1223
},
13-
"keywords": [],
14-
"author": "Vlad Tansky",
15-
"license": "ISC",
1624
"dependencies": {
1725
"chalk": "^4.0.0",
1826
"elapsed-time-logger": "^1.1.2",

0 commit comments

Comments
 (0)