forked from DataDog/datadog-api-client-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.94 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
{
"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
}
},
"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": "eslint . --ext .js,.jsx,.ts,.tsx --fix && prettier --write --ignore-unknown",
"prepare": "yarn run build",
"test": "node bin/dd-cucumber-js features/*/*.feature",
"test:rerecord": "RECORD=true node bin/dd-cucumber-js @rerun.txt",
"jest-test": "jest --no-cache",
"jest-coverage": "jest --no-cache --coverage"
},
"dependencies": {
"@types/node": "*",
"@types/node-fetch": "^2.5.7",
"btoa": "^1.2.1",
"durations": "^3.4.2",
"es6-promise": "^4.2.4",
"form-data": "^3.0.0",
"node-fetch": "^2.6.0",
"url-parse": "^1.4.3"
},
"resolutions": {
"@pollyjs/adapter-node-http/nock": "^13.1.3"
},
"devDependencies": {
"@cucumber/cucumber": "^7.3.1",
"@cucumber/messages": "^13.2.1",
"@pollyjs/adapter-node-http": "^5.1.0",
"@pollyjs/core": "^5.1.0",
"@pollyjs/persister-fs": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.168",
"@types/pollyjs__adapter-node-http": "^2.0.1",
"@types/pollyjs__core": "^4.3.2",
"@types/pollyjs__persister-fs": "^2.0.1",
"@types/pollyjs__utils": "^2.6.1",
"@types/react": ">=16",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"chai": "^4.2.0",
"dd-trace": "latest-node10",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unused-imports": "^1.1.1",
"jest": "^27.0.6",
"prettier": "^2.4.0",
"ts-jest": "^27.0.4",
"ts-node": "^9.1.1",
"typescript": "^3.9.10"
},
"engines": {
"node": ">=10.0.0"
},
"version": "1.0.0-beta.5"
}