25 lines
683 B
JSON
25 lines
683 B
JSON
|
{
|
||
|
"name": "snakes_and_ladders",
|
||
|
"version": "1.0.0",
|
||
|
"description": "",
|
||
|
"main": "main.js",
|
||
|
"type": "module",
|
||
|
"scripts": {
|
||
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||
|
"build": "npx tsc",
|
||
|
"start": "node ./dist/main.js",
|
||
|
"sample": "node ./dist/main.js \"./sample_data/tournament_board.json\" \"./sample_data/game_logs.csv\""
|
||
|
},
|
||
|
"author": "Ben Ashton",
|
||
|
"license": "ISC",
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^17.0.35",
|
||
|
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
||
|
"@typescript-eslint/parser": "^5.26.0",
|
||
|
"eslint": "^8.16.0",
|
||
|
"eslint-config-prettier": "^8.5.0",
|
||
|
"prettier": "2.6.2",
|
||
|
"typescript": "^4.7.2"
|
||
|
}
|
||
|
}
|