-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 983 Bytes
/
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
{
"name": "transferzero-sdk",
"version": "1.36.5",
"description": "Client library for TransferZero API.",
"license": "MIT",
"author": {
"name": "TransferZero",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/transferzero/transferzero-sdk-javascript"
},
"bugs": {
"url": "https://github.com/transferzero/transferzero-sdk-javascript/issues"
},
"keywords": [
"transferzero"
],
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist --source-maps",
"prepack": "npm run build",
"test": "mocha --compilers js:babel-core/register --recursive"
},
"browser": {
"fs": false
},
"dependencies": {
"superagent": "8.1.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"expect.js": "~0.3.1",
"mocha": "^10.4.0",
"sinon": "17.0.1"
},
"files": [
"dist"
]
}