-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 775 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 775 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
{
"name": "settle",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"prettier": "npx prettier -w ./sdk ./tests && npx tsc"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0
}
}
},
"author": "Pranav Mahadik <work.pranavmahadik@gmail.com>",
"license": "ISC",
"dependencies": {
"@pixelbin/core": "^6.0.0",
"axios": "^1.6.0",
"axios-retry": "^3.3.1",
"crypto-js": "^4.0.0",
"joi": "^17.4.0",
"query-string": "^6.14.1",
"camelcase": "^6.2.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.19.0",
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"jest": "^26.6.3"
}
}