-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 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
{
"name": "seatsio",
"version": "84.3.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"/dist/src"
],
"description": "Official JavaScript and Node.JS client library for the Seats.io REST API",
"license": "MIT",
"scripts": {
"lint": "eslint './src/**/*.ts' './tests/**/*.ts'",
"test": "jest --maxWorkers=8 --verbose",
"build": "ctix build --mode bundle && tsc --outDir dist --declaration"
},
"repository": {
"type": "git",
"url": "https://github.com/seatsio/seatsio-js"
},
"dependencies": {
"axios": "1.7.9"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.3",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ctix": "2.7.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"prettier": "3.4.2",
"semver": "7.6.3",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"uuid": "11.0.3",
"zx": "8.3.0"
}
}