-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
155 lines (155 loc) · 4.85 KB
/
package.json
File metadata and controls
155 lines (155 loc) · 4.85 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "@wyre-technology/autotask-node",
"version": "2.1.0",
"description": "Production-ready Node.js SDK for Kaseya Autotask PSA REST API with 100% API coverage, TypeScript support, enterprise features, and comprehensive testing.",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"bin": {
"autotask-node": "dist/cli/index.js"
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest --runInBand",
"test:unsafe": "jest",
"test:unit": "jest --config jest.config.js",
"test:unit:debug": "DEBUG_TESTS=true jest --config jest.config.js",
"test:integration": "jest --config jest.integration.config.js",
"test:integration:debug": "DEBUG_INTEGRATION_TESTS=true jest --config jest.integration.config.js",
"test:integration:mock": "jest --testPathPattern=mock-server --testPathPattern=sdk-integration",
"test:integration:comprehensive": "jest test/integration/sdk-integration.test.ts",
"test:comprehensive": "node scripts/run-comprehensive-tests.js",
"test:comprehensive:debug": "DEBUG_INTEGRATION_TESTS=true node scripts/run-comprehensive-tests.js",
"test:integration:enhanced": "jest --config test/integration/jest.enhanced.config.js",
"test:integration:enhanced:debug": "DEBUG_INTEGRATION_TESTS=true jest --config test/integration/jest.enhanced.config.js",
"test:all": "npm run test:unit && npm run test:integration",
"test:all:enhanced": "npm run test:unit && npm run test:integration:enhanced",
"test:integration:watch": "jest --config jest.integration.config.js --watch",
"test:coverage": "jest --config jest.config.js --coverage",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"cli": "ts-node src/cli/index.ts",
"generate-entities": "ts-node src/tools/entity-generator.ts",
"setup:integration": "node scripts/setup-integration-tests.js",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && git push origin main --tags",
"release:minor": "npm version minor && git push origin main --tags",
"release:major": "npm version major && git push origin main --tags",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
],
"*.{ts,js,json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wyre-technology/autotask-node.git"
},
"homepage": "https://github.com/wyre-technology/autotask-node#readme",
"bugs": {
"url": "https://github.com/wyre-technology/autotask-node/issues"
},
"keywords": [
"autotask",
"psa",
"api",
"client",
"typescript",
"nodejs",
"kaseya",
"rest",
"wrapper",
"integration",
"cli"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"dependencies": {
"@types/async": "^3.2.25",
"@types/cors": "^2.8.17",
"@types/uuid": "^10.0.0",
"async": "^3.2.6",
"axios": "^1.13.2",
"bull": "^4.16.5",
"chalk": "^4.1.2",
"commander": "^14.0.2",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"csv-parse": "^6.1.0",
"dompurify": "^3.3.0",
"dotenv": "^17.2.3",
"exceljs": "^4.4.0",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"glob": "^11.0.3",
"ioredis": "^5.8.2",
"joi": "^18.0.2",
"jsdom": "^27.2.0",
"lru-cache": "^11.1.0",
"ora": "^5.4.1",
"reflect-metadata": "^0.2.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0",
"validator": "^13.15.23",
"winston": "^3.19.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bull": "^3.15.9",
"@types/crypto-js": "^4.2.2",
"@types/dompurify": "^3.2.0",
"@types/express": "^5.0.6",
"@types/ioredis": "^4.28.10",
"@types/jest": "^30.0.0",
"@types/joi": "^17.2.3",
"@types/jsdom": "^27.0.0",
"@types/lru-cache": "^7.10.9",
"@types/nock": "^11.1.0",
"@types/node": "^22.15.30",
"@types/reflect-metadata": "^0.1.0",
"@types/validator": "^13.15.10",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"lint-staged": "^16.2.7",
"nock": "^14.0.10",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"overrides": {
"brace-expansion": "^2.0.1",
"diff": "^8.0.3"
}
}