forked from square/square-nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"version": "22.0.0",
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/square.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10.4.0"
},
"scripts": {
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint src",
"prepare": "tsdx build"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "square",
"description": "Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.",
"author": "Square Developer Platform",
"devDependencies": {
"@types/uuid": "^8.3.0",
"stream-equal": "^2.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^3.9.7",
"uuid": "^8.3.0"
},
"dependencies": {
"@apimatic/core": "^0.7.7",
"@apimatic/json-bigint": "^1.2.0",
"@apimatic/schema": "^0.6.0",
"@types/node": "^14.14.30"
},
"repository": {
"type": "git",
"url": "https://github.com/square/square-nodejs-sdk.git"
},
"bugs": {
"email": "[email protected]"
}
}