-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
111 lines (111 loc) · 3.17 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@datadog/datadog-api-client",
"description": "OpenAPI client for Datadog APIs",
"author": "Datadog Inc",
"keywords": [
"api",
"fetch",
"datadog",
"typescript",
"openapi-client",
"openapi-generator"
],
"files": [
"dist/**/*"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/DataDog/datadog-api-client-typescript.git"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"lint-staged": {
"linters": {
"*.js": [
"prettier --write --ignore-unknown",
"eslint --fix",
"git add"
],
"*.ts": [
"prettier --write --ignore-unknown",
"eslint --fix",
"git add"
],
"*.{json,md,html,yml,yaml,css}": [
"prettier --ignore-path .eslintignore --write",
"git add"
]
},
"globOptions": {
"dot": true
}
},
"prettier": {
"trailingComma": "es5"
},
"scripts": {
"prebuild": "node -p \"'export const version = ' + JSON.stringify(require('./package.json').version)\" > version.ts",
"build": "tsc",
"check-licenses": "node bin/check-licenses.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn install --ignore-scripts; eslint packages --ext .ts --fix; prettier --write --ignore-unknown packages",
"lint:fix-examples": "yarn install --ignore-scripts; eslint examples --ext .ts --fix; prettier --write --ignore-unknown examples",
"prepare": "yarn run build",
"test": "node bin/dd-cucumber-js features/*/*.feature",
"test:retry": "node bin/dd-cucumber-js @rerun.txt",
"jest-test": "jest --no-cache",
"jest-coverage": "jest --no-cache --coverage"
},
"dependencies": {
"@types/buffer-from": "^1.1.0",
"@types/node": "*",
"@types/pako": "^1.0.3",
"buffer-from": "^1.1.2",
"cross-fetch": "^3.1.5",
"es6-promise": "^4.2.8",
"form-data": "^4.0.0",
"loglevel": "^1.8.1",
"pako": "^2.0.4"
},
"resolutions": {
"@pollyjs/adapter-node-http/nock": "^13.1.3"
},
"devDependencies": {
"@cucumber/cucumber": "^9.2.0",
"@cucumber/messages": "^22.0.0",
"@pollyjs/adapter-node-http": "^6.0.5",
"@pollyjs/core": "^6.0.5",
"@pollyjs/persister-fs": "^6.0.5",
"@types/chai": "^4.3.4",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"chai": "^4.3.7",
"chai-quantifiers": "^1.0.17",
"dd-trace": "^4.3.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"nock": "^13.3.3",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.26",
"typescript": "4.8.4",
"zstd.ts": "^1.1.3"
},
"engines": {
"node": ">=12.0.0"
},
"version": "1.31.1-beta.0",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}