-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "@internxt/sdk",
"author": "Internxt <hello@internxt.com>",
"version": "1.9.5",
"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": "^27.0.1",
"@types/sinon": "^10.0.6",
"@types/uuid": "^8.3.4",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"sinon": "^12.0.1",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.24.0",
"query-string": "^7.1.0",
"uuid": "^8.3.2"
}
}