-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.73 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.73 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
{
"name": "@digitalocean/dots",
"type": "module",
"version": "1.10.0",
"description": "TypeScript client generator based on DigitalOcean's OpenAPI specification.",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:mock": "node --experimental-vm-modules node_modules/.bin/jest --testPathPatterns=mock",
"test:integration": "node --experimental-vm-modules node_modules/.bin/jest --testPathPatterns=integration",
"test:single": "node --experimental-vm-modules node_modules/.bin/jest",
"lint": "npx eslint . --ignore-pattern docs/",
"docs": "typedoc",
"build": "tsc"
},
"author": "DigitalOcean",
"license": "Apache-2.0",
"keywords": [
"digitalocean",
"typescript",
"dots",
"OpenAPI",
"Kiota",
"javascript"
],
"repository": {
"type": "git",
"url": "git@github.com:digitalocean/dots.git"
},
"bugs": {
"url": "https://github.com/digitalocean/dots/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/digitalocean/dots",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/jest": "^30.0.0",
"@types/nock": "^10.0.3",
"@types/node": "^22.13.13",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"jest": "^30.0.3",
"nock": "^14.0.5",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0"
},
"dependencies": {
"@azure/core-http": "^3.0.5",
"@microsoft/kiota-authentication-azure": "^1.0.0-preview.61",
"@microsoft/kiota-bundle": "^1.0.0-preview.9",
"@microsoft/kiota-http-fetchlibrary": "^1.0.0-preview.97",
"dotenv": "^17.2.0",
"uuid": "^11.1.0"
}
}