bitburner-filesync/package.json

74 lines
1.8 KiB
JSON

{
"name": "bitburner-filesync",
"version": "1.1.5",
"description": "Official implementation of the Bitburner Filesync server",
"type": "module",
"bin": "./npx/bitburner-filesync.ts",
"main": "./npx/bitburner-filesync.ts",
"scripts": {
"format": "prettier -w .",
"format:report": "prettier -c .",
"test:all": "mocha --recursive test",
"test:single": "mocha",
"start": "npx/bitburner-filesync.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitburner-official/bitburner-filesync.git"
},
"keywords": [
"bitburner",
"rfa",
"remote"
],
"license": "Unlicense",
"author": "Zoë Hoekstra",
"bugs": {
"url": "https://github.com/bitburner-official/bitburner-filesync/issues"
},
"homepage": "https://github.com/bitburner-official/bitburner-filesync#readme",
"dependencies": {
"cheap-watch": "^1.0.4",
"convict": "^6.2.3",
"signal-js": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"ws": "^8.8.1"
},
"devDependencies": {
"prettier": "^2.7.1",
"@types/chai": "^4.3.3",
"@types/convict": "^6.1.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.23",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@types/ws": "^8.5.3",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
},
"mocha": {
"bail": false,
"delay": false,
"diff": true,
"extension": [
"ts"
],
"node-option": "loader=ts-node/esm",
"parallel": true,
"reporter": "spec",
"require": [
"./test/setup-tests.ts"
],
"slow": "75",
"timeout": "2000",
"ui": "bdd",
"watch-files": [
"test/**/*.ts"
],
"watch-ignore": []
}
}