-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.7 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
{
"name": "cloudconvert",
"version": "3.0.0",
"license": "MIT",
"description": "Official Node.js SDK for the CloudConvert API",
"homepage": "https://github.com/cloudconvert/cloudconvert-node",
"author": "Josias Montag <josias@montag.info>",
"main": "built/lib/index.js",
"types": "built/lib/index.d.ts",
"module": "built/lib/CloudConvert.js",
"repository": {
"type": "git",
"url": "https://github.com/cloudconvert/cloudconvert-node.git"
},
"bugs": {
"url": "https://github.com/cloudconvert/cloudconvert-node/issues"
},
"engines": {
"node": ">=20.11.19"
},
"dependencies": {
"socket.io-client": "^4.7.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@types/chai": "^5.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.19",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"chai": "^5.0.3",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^16.0.0",
"mocha": "^11.1.0",
"nock": "^14.0.3",
"prettier": "3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.3.3"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "mocha --require tsx tests/unit/*.ts",
"test-integration": "mocha --require tsx tests/integration/*.ts",
"fmt": "prettier . --write",
"lint": "eslint --ext .ts --ext .js --ext .json ."
}
}