-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "groupdocs-conversion-cloud",
"version": "24.12.0",
"description": "GroupDocs.Conversion Cloud SDK for Node.js",
"homepage": "https://products.groupdocs.cloud/conversion",
"author": {
"name": "GroupDocs"
},
"license": "MIT",
"engines": {
"node": ">=4.8"
},
"repository": {
"type": "git",
"url": "https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-node"
},
"keywords": [
"GroupDocs",
"Cloud",
"Conversion"
],
"readmeFilename": "README.md",
"main": "lib/conversion_api.js",
"types": "lib/conversion_api.d.ts",
"scripts": {
"clean": "rimraf ./lib && rimraf ./node_modules",
"lint": "npm install --no-save && tslint src/{,**/}*.ts test/{,**/}*.ts -t verbose --project ./tsconfig.json",
"test": "npm install --no-save && mocha -r ts-node/register test/**/*.ts --timeout 60000 --reporter spec",
"test1": "npm install --no-save && mocha -r ts-node/register test/**/test_conversion_api.ts --timeout 60000 --reporter spec",
"build:dev": "rimraf ./lib && npm install --no-save && tsc --build ./tsconfig-dev.json",
"build:lib": "rimraf ./lib && npm install --no-save && tsc --build ./tsconfig.json",
"build:package": "npm pack"
},
"dependencies": {
"axios": "1.7.9",
"form-data": "*",
"jsonwebtoken": "9.0.1",
"qs": "6.11.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/jsonwebtoken": "9.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.19.15",
"@types/qs": "^6.9.7",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"ts-node": "^8.6.2",
"tslint": "^5.17.0",
"typescript": "^5.1.6"
}
}