metric-imperial-converter/package.json
Seth b8dcd60fbc
fix: add npm run test (#17)
User can now do `npm run test` to run tests.
2021-03-12 07:41:43 -08:00

30 lines
615 B
JSON

{
"name": "fcc-imperial-metric-converter-boilerplate",
"version": "1.0.0",
"description": "Metric / Imperial Unit Converter",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha ./tests/ --ui tdd"
},
"dependencies": {
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mocha": "^8.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/freeCodeCamp/boilerplate-project-metricimpconverter"
},
"keywords": [
"node",
"freeCodeCamp",
"express"
],
"license": "MIT"
}