-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
84 lines (84 loc) · 2.77 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
81
82
83
84
{
"name": "connectwise-rest",
"version": "1.3.0",
"description": "A nodejs module for interacting with the ConnectWise Manage and Automate REST APIs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean:docs": "npx rimraf docs/",
"clean:generator": "npx rimraf generator/Manage/*.ts generator/Automate/*.ts",
"clean:dist": "npx rimraf dist/",
"clean:src": "npx rimraf src/Manage/ & npx rimraf src/Automate/",
"clean": "npm run clean:dist & npm run clean:generator & npm run clean:src",
"test": "npm run test:manage",
"test:automate": "npx nyc mocha test/test-automate.js",
"test:manage": "npx nyc mocha test/test-manage.js",
"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",
"build": "npx tsc",
"postbuild": "npm run lint",
"lint": "npx eslint -c .eslintrc --fix",
"coveralls": "npx nyc report --reporter=text-lcov > ./.nyc_output/lcov.info",
"predocs": "npm run clean:docs",
"docs": "npx typedoc src/index.ts",
"preapidocumenter": "npx api-extractor run --local --verbose",
"apidocumenter": "npx api-documenter markdown --input-folder temp --output-folder docs",
"gh-pages": "npx gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "https://github.com/covenanttechnologysolutions/connectwise-rest"
},
"keywords": [
"connectwise",
"connectwise manage",
"connectwise automate",
"rest",
"api",
"nodejs"
],
"author": {
"name": "Kevin Grube",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/covenanttechnologysolutions/connectwise-rest/issues"
},
"homepage": "https://github.com/covenanttechnologysolutions/connectwise-rest",
"dependencies": {
"axios": "^1.6.7",
"promise-retry": "^2.0.1"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.16.0",
"@microsoft/api-extractor": "^7.19.5",
"@types/eslint": "^8.4.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/promise-retry": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"coveralls": "^3.1.1",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"openapi-typescript": "^6.7.4",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=12"
}
}