-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.96 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.96 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
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
{
"name": "square",
"version": "44.1.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/square/square-nodejs-sdk.git"
},
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"format": "biome format --write --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"format:check": "biome format --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"lint": "biome lint --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"lint:fix": "biome lint --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"check": "biome check --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"check:fix": "biome check --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"build": "tsc",
"prepack": "cp -rv dist/. .",
"test": "jest --selectProjects unit wire",
"test:unit": "jest --selectProjects unit",
"test:wire": "jest --selectProjects wire",
"test:integration": "jest --selectProjects integration"
},
"dependencies": {
"form-data": "^4.0.4",
"formdata-node": "^6.0.3",
"node-fetch": "^2.7.0",
"readable-stream": "^4.5.2",
"form-data-encoder": "^4.0.2",
"square-legacy": "npm:square@^39.1.1"
},
"devDependencies": {
"@types/node-fetch": "^2.6.12",
"@types/readable-stream": "^4.0.18",
"webpack": "^5.97.1",
"ts-loader": "^9.5.1",
"jest": "^29.7.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"ts-jest": "^29.3.4",
"jest-environment-jsdom": "^29.7.0",
"msw": "2.11.2",
"@types/node": "^18.19.70",
"typescript": "~5.7.2",
"@biomejs/biome": "2.3.1"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"stream": false
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"description": "Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.",
"author": {
"name": "Square Developer Platform",
"url": "https://developer.squareup.com",
"email": "developers@squareup.com"
},
"bugs": {
"url": "https://developer.squareup.com",
"email": "developers@squareup.com"
},
"exports": {
".": "./index.js",
"./legacy": {
"types": "./legacy/exports/index.d.ts",
"require": {
"types": "./legacy/exports/index.d.ts",
"default": "./legacy/exports/index.js"
},
"import": {
"types": "./legacy/exports/index.d.mts",
"default": "./legacy/exports/index.mjs"
}
}
}
}