cubbot/package.json

41 lines
1.2 KiB
JSON
Raw Normal View History

2020-04-16 20:22:57 +00:00
{
"name": "cubbot",
"version": "0.0.1",
"description": "Mostly AFK Minecraft bot",
"repository": {
"type": "git",
"url": "https://git.wadza.fr/me/cubbot.git"
},
"scripts": {
"start": "node build/index.js",
"start:dev": "ts-node src/index.ts | pino-pretty -i pid,hostname",
"build": "tsc",
"watch": "concurrently --kill-others \"tsc -w\" \"nodemon build/dev.js\"",
"lint": "tslint --project tsconfig.json",
"test": "mocha -r ts-node/register test/**/*Test.ts",
"test:coverage": "nyc -r lcov -e .ts -x \"*Test.ts\" mocha -r ts-node/register test/**/*Test.ts && nyc report"
},
"dependencies": {
"minecraft-protocol": "^1.11.0",
2020-04-19 17:02:07 +00:00
"pino": "^6.2.0",
"strip-json-comments": "^3.1.0"
2020-04-16 20:22:57 +00:00
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@types/pino": "^6.0.0",
2020-04-19 17:02:07 +00:00
"@types/sprintf-js": "^1.1.2",
2020-04-16 20:22:57 +00:00
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"pino-pretty": "^4.0.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"author": "Maelys Bois",
"license": "GPL-3.0"
}