carpark-test/package.json

33 lines
802 B
JSON
Raw Normal View History

2020-11-03 23:00:17 +00:00
{
"name": "hotdocs",
"version": "1.0.0",
"description": "Parking Charge Calculator",
"main": "lib/carpark.js",
"scripts": {
"test:js": "mocha test/**/*.js",
"test:ts": "mocha -r ts-node/register test/**/*.ts",
"lint": "eslint . --ext .ts",
"coverage": "nyc npm run test:js"
},
"keywords": [],
"author": "Martin Donnelly",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"expect.js": "^0.3.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typings": "^2.1.1"
},
"dependencies": {
"fecha": "^4.2.0"
}
}