-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
53
54
55
56
57
58
59
60
{
"name": "swell-node",
"version": "6.0.0",
"description": "Swell API client for NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git://github.com/swellstores/swell-node.git"
},
"keywords": [
"swell",
"ecommerce",
"api"
],
"author": "Swell",
"license": "MIT",
"homepage": "https://github.com/swellstores/swell-node",
"bugs:": "https://github.com/swellstores/swell-node/issues",
"dependencies": {
"axios": "^1.7.7",
"http-cookie-agent": "^5.0.4",
"retry": "^0.13.1",
"tough-cookie": "^4.1.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^14.14.31",
"@types/retry": "^0.12.5",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"axios-mock-adapter": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint src",
"prettier": "prettier --write \"**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch"
}
}