This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "@axiomhq/axiom-node",
"description": "The official NodeJS bindings for the Axiom API",
"version": "0.12.0",
"author": "Axiom, Inc.",
"license": "MIT",
"contributors": [
"Lukas Malkmus <lukas@axiom.co>",
"Islam Schehata <islam@axiom.co>",
"Arne Bahlo <arne@axiom.co>"
],
"engines": {
"node": ">=14"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint": "eslint '*/**/*.{js,ts}'",
"prepublish": "npm run build",
"test": "jest tests/unit",
"cover": "nyc -r text -e .ts -x 'tests/unit/**/*.test.ts' npm run test",
"integration": "jest tests/integration --testTimeout=10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/axiom-node.git"
},
"keywords": [
"axiom",
"api",
"rest",
"client"
],
"bugs": {
"url": "https://github.com/axiomhq/axiom-node/issues"
},
"homepage": "https://github.com/axiomhq/axiom-node",
"dependencies": {
"axios": "^1.2.0",
"axios-retry": "^3.3.1",
"to-time": "^1.0.2",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^27.5.2",
"@types/node": "^20.3.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.5.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nock": "^13.2.6",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"winston": "^3.8.2"
}
}