This repository was archived by the owner on Feb 25, 2020. It is now read-only.
File tree 5 files changed +63
-0
lines changed
5 files changed +63
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "projects": {
3
+ "default": "make-rpg"
4
+ }
5
+ }
Original file line number Diff line number Diff line change
1
+ # VSCode
2
+ .vscode
3
+
4
+ # npm
5
+ node_modules
6
+
7
+ # production
8
+ public
9
+
10
+ # firebase
11
+ firebase-debug.log
Original file line number Diff line number Diff line change
1
+ {
2
+ "hosting" : {
3
+ "public" : " public" ,
4
+ "ignore" : [
5
+ " firebase.json" ,
6
+ " **/.*" ,
7
+ " **/node_modules/**"
8
+ ]
9
+ }
10
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " make-rpg" ,
3
+ "version" : " 1.0.0" ,
4
+ "description" : " The kit to create new game in HackforPlay" ,
5
+ "main" : " index.js" ,
6
+ "scripts" : {
7
+ "test" : " exit 0"
8
+ },
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git+https://github.com/hackforplay/make-rpg.git"
12
+ },
13
+ "keywords" : [
14
+ " HackforPlay"
15
+ ],
16
+ "author" : " teramotodaiki" ,
17
+ "license" : " MIT" ,
18
+ "bugs" : {
19
+ "url" : " https://github.com/hackforplay/make-rpg/issues"
20
+ },
21
+ "homepage" : " https://github.com/hackforplay/make-rpg#readme"
22
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "html": {
3
+ "indent_with_tabs": true
4
+ },
5
+ "css": {
6
+ "indent_with_tabs": true,
7
+ "indent_inner_html": true,
8
+ "extra_liners": []
9
+ },
10
+ "js": {
11
+ "indent_with_tabs": true,
12
+ "end_with_newline": true,
13
+ "brace_style": "collapse,preserve-inline"
14
+ }
15
+ }
You can’t perform that action at this time.
0 commit comments