-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "groupdocs-viewer-cloud",
"version": "24.12.0",
"description": "GroupDocs.Viewer Cloud SDK for Node.js",
"homepage": "https://products.groupdocs.cloud/viewer",
"author": {
"name": "GroupDocs"
},
"license": "MIT",
"engines": {
"node": ">=4.8"
},
"repository": {
"type": "git",
"url": "https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-node"
},
"keywords": [
"GroupDocs",
"Cloud",
"Viewer"
],
"readmeFilename": "README.md",
"main": "lib/viewer_api.js",
"types": "lib/viewer_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",
"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.5",
"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"
}
}