I created a new Node.js command line app with Visual Studio 2013 Pro and specified the name of the project to be "test-console-app".
When I opened the newly created `package.json`, I expected that to be the name of the package but instead the name contained underscores where my hyphens were:
```
{
"name": "test_console_app",
"version": "0.0.0",
"description": "test-console-app",
"main": "app.js",
"author": {
"name": "Wayne",
"email": ""
}
}
```
When I opened the newly created `package.json`, I expected that to be the name of the package but instead the name contained underscores where my hyphens were:
```
{
"name": "test_console_app",
"version": "0.0.0",
"description": "test-console-app",
"main": "app.js",
"author": {
"name": "Wayne",
"email": ""
}
}
```