Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit55a9b6d

Browse files
committed
init
0 parents  commit55a9b6d

File tree

5 files changed

+29
-0
lines changed

5 files changed

+29
-0
lines changed

‎.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# NPM
2+
node_modules
3+
package-lock.json

‎.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": ["dbaeumer.vscode-eslint"]
5+
}

‎.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version":"0.2.0",
3+
"configurations": [
4+
{
5+
"type":"node",
6+
"request":"launch",
7+
"name":"Run Tests",
8+
"program":"${workspaceFolder}/node_modules/mocha/bin/_mocha",
9+
"args": ["--reporter=spec","--colors","--bail","--timeout","9999999"],
10+
"console":"internalConsole",
11+
"internalConsoleOptions":"openOnSessionStart"
12+
}
13+
]
14+
}

‎.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"editor.formatOnSave":true,
3+
"editor.codeActionsOnSave": {
4+
"source.fixAll":true
5+
}
6+
}

‎README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#Backend Challenges: package.json

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp