carpark-test/package.json
Martin Donnelly db9dcf643a Added some missing config files.
Added rollup to build distribution js files.
2020-11-04 09:53:47 +00:00

35 lines
873 B
JSON

{
"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",
"build:js": "rollup -c rollup.config.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",
"rollup": "^2.33.1",
"ts-node": "^9.0.0",
"typings": "^2.1.1"
},
"dependencies": {
"fecha": "^4.2.0"
}
}