-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 858 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 858 Bytes
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
{
"name": "@mosparo/api-client",
"version": "1.3.0",
"description": "JavaScript and TypeScript API client to communicate with mosparo.",
"main": "./src/index.js",
"type": "commonjs",
"types": "./types/index.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mosparo/js-api-client.git"
},
"keywords": [
"mosparo",
"js",
"javascript",
"typescript",
"ts",
"api-client",
"spam",
"protection"
],
"author": "mosparo (https://mosparo.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mosparo/js-api-client/issues"
},
"homepage": "https://mosparo.io",
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"axios-mock-adapter": "^2.1.0",
"jest": "^30.3.0",
"typescript": "^6.0.2"
},
"dependencies": {
"axios": ">=1.15.0",
"crypto-js": ">=4.2.0"
}
}