-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "@internxt/sdk",
"author": "Internxt <hello@internxt.com>",
"version": "1.6.3",
"description": "An sdk for interacting with Internxt's services",
"repository": {
"type": "git",
"url": "git+https://github.com/internxt/sdk.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/internxt/sdk/issues"
},
"homepage": "https://github.com/internxt/sdk#readme",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"test": "jest --detectOpenHandles test/",
"test:cov": "jest --coverage",
"build": "tsc",
"lint": "eslint src/**/*.ts --max-warnings=0",
"format": "prettier src/**/*.ts"
},
"devDependencies": {
"@internxt/eslint-config-internxt": "^1.0.3",
"@internxt/prettier-config": "^1.0.1",
"@types/jest": "^29.5.14",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"eslint": "^7.32.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^0.28.0",
"query-string": "^7.1.0",
"uuid": "^11.0.2"
}
}