Not working, says // running tests
Unexpected token < in JSON at position 0
// tests completed
link to the project: https://glitch.com/edit/#!/alabaster-argument?path=package.json:1:0
I am not familiar with glitch, could you tell me if adding “author”: “Yayan_Ruhian”,
and leaving everything else the same isnt correct
If it is, then there is another issue. It also says "package.json should have a valid “author” key.
I used the link in the assignment to get to the glitch project.
{
“//1”: “describes your app and its dependencies”,
“//2”: “insert link here”,
“//3”: “updating this file will download and update your packages”,
“name”: “hello-express”,
“author”: “Yayan_Ruhian”,
“version”: “0.0.1”,
“description”: “A simple Node app built on Express, instantly up and running.”,
“main”: “server.js”,
“scripts”: {
“start”: “node server.js”
},
“dependencies”: {
“express”: “^4.16.3”
},
“engines”: {
“node”: “8.x”
},
“repository”: {
“url”: “https://glitch.com/edit/#!/hello-express”
},
“license”: “MIT”,
“keywords”: [
“node”,
“glitch”,
“express”
]
}