forked from bitburner-official/bitburner-filesync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "bitburner-filesync",
"version": "1.1.5",
"description": "Official implementation of the Bitburner Filesync server",
"type": "module",
"bin": "./dist/npx/bitburner-filesync.js",
"main": "./dist/npx/bitburner-filesync.js",
"scripts": {
"build": "tsc --build --verbose --pretty",
"clean": "tsc --build --clean",
"format": "prettier -w .",
"format:report": "prettier -c .",
"lint": "eslint . --ext .ts",
"test:all": "tsc && nyc mocha --recursive test",
"test:single": "mocha",
"start": "ts-node 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",
"typescript": "^4.8.4",
"ws": "^8.8.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@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",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1"
}
}