-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.49 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.49 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
{
"name": "connectwise-rest",
"version": "2.0.0-alpha.2",
"description": "A nodejs module for interacting with the ConnectWise Manage and Automate REST APIs.",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"clean:docs": "npx rimraf docs/",
"clean:generator": "npx rimraf generator/temp/",
"clean:dist": "npx rimraf dist/",
"clean:src": "npx rimraf src/Automate/ src/Manage/ src/AutomateAPI.ts src/ManageAPI.ts src/AutomateTypes.ts src/ManageTypes.ts",
"clean": "npm run clean:dist && npm run clean:generator && npm run clean:src",
"pretest": "npm run build",
"test": "npm run test:types && npx nyc mocha test/test-utils.mjs test/test-automate.mjs test/test-manage.mjs test/test-manage-integration.mjs",
"test:ci": "npm run test:types && npx nyc mocha test/test-utils.mjs test/test-automate.mjs test/test-manage.mjs",
"test:types": "npx tsc --noEmit -p test",
"test:automate": "npx nyc mocha test/test-automate.mjs",
"test:manage": "npx nyc mocha test/test-manage.mjs",
"test:integration:manage": "npx mocha test/test-manage-integration.mjs",
"pregenerate": "npm run clean",
"generate:automate": "node generator/automate-generator.js",
"generate:manage": "node generator/manage-generator.js",
"generate": "npm run generate:automate && npm run generate:manage",
"prebuild": "npm run generate",
"build": "npx tsc",
"lint": "npx eslint src --fix --cache --cache-location node_modules/.cache/eslint/",
"predocs": "npm run clean:docs",
"docs": "npx typedoc src/index.ts",
"gh-pages": "npx gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/covenanttechnologysolutions/connectwise-rest"
},
"keywords": [
"connectwise",
"connectwise manage",
"connectwise automate",
"rest",
"api",
"nodejs"
],
"author": {
"name": "Kevin Grube",
"email": "grube.kevin@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/covenanttechnologysolutions/connectwise-rest/issues"
},
"homepage": "https://github.com/covenanttechnologysolutions/connectwise-rest",
"dependencies": {
"axios": "^1.15.0",
"promise-retry": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/promise-retry": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"dotenv": "^17.4.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"expect-type": "^1.3.0",
"gh-pages": "^6.3.0",
"globals": "^17.5.0",
"lodash": "^4.18.1",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.2",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
},
"engines": {
"node": ">=18"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
"**/*.d.ts",
"dist/AutomateTypes.js",
"dist/ManageTypes.js",
"dist/Automate/**",
"dist/Manage/**",
"generator/**",
"scripts/**",
"test/**",
"coverage/**"
]
}
}