Skip to content

Commit 1fd0067

Browse files
Chore: Setup node
1 parent 970d6be commit 1fd0067

File tree

4 files changed

+33
-0
lines changed

4 files changed

+33
-0
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
indent_size = 2
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
indent_style = space

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact=true

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v8.11.3

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "htmldom-to-react",
3+
"version": "1.0.0",
4+
"description": "Convert HTML DOM to React elements",
5+
"main": "./lib/index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/thomasthiebaud/htmldom-to-react.git"
12+
},
13+
"author": "Thomas Thiebaud",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/thomasthiebaud/htmldom-to-react/issues"
17+
},
18+
"homepage": "https://github.com/thomasthiebaud/htmldom-to-react#readme"
19+
}

0 commit comments

Comments
 (0)