You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
redirector/package.json

24 lines
462 B

{
"name": "redirector",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-dev": "nodemon index.js",
"test": "jest",
"test-coverage": "jest --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"moment": "^2.27.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}