-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@lukaskj/syncr",
"version": "1.9.0",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "lukaskj",
"license": "ISC",
"scripts": {
"clean": "rimraf dist coverage .rollup.cache",
"prebuild": "npm run clean",
"build": "node build/esbuild.mjs",
"build:prod": "npm run lint && npm run build",
"debug": "node --inspect-brk -r ts-node/register ./src/index.ts",
"start": "ts-node --swc ./src/index.ts",
"format": "prettier --write src/",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --config ./jest.config.js --maxWorkers=1",
"test:watch": "npm run test -- --watch",
"test:cov": "npm run test -- --coverage",
"test:debug": "-- node --inspect=0.0.0.0:5001 -r ts-node/register node_modules/jest/bin/jest.js --runInBand --config ./jest.config.js",
"prepare": "husky",
"prepack": "npm run build && node build/publish-utils.mjs",
"postpublish": "node build/publish-utils.mjs back"
},
"devDependencies": {
"@anatine/esbuild-decorators": "^0.2.19",
"@commander-js/extra-typings": "^12.0.1",
"@faker-js/faker": "^8.4.1",
"@listr2/manager": "^2.0.8",
"@swc/core": "^1.4.11",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.2",
"@types/ssh2": "^1.15.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"abbrev": "^2.0.0",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.2",
"listr2": "^8.2.1",
"prettier": "^3.2.5",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.5",
"ssh2": "^1.15.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedi": "^0.10.0",
"typescript": "^5.4.3",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.3"
},
"engines": {
"node": ">=20"
},
"bin": {
"syncr": "dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukaskj/syncr.git"
},
"bugs": {
"url": "https://github.com/lukaskj/syncr/issues"
},
"homepage": "https://github.com/lukaskj/syncr#readme",
"files": [
"dist/**/*",
"!**/test/**"
]
}