@dataggo/node-akeneo-api 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dataggo/node-akeneo-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "A Node Rest Client for the Akeneo PIM",
|
|
5
5
|
"author": "Constant B <contact@dataggo>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"watch": "tsc -w -p tsconfig.json && tsc -w -p tsconfig-cjs.json",
|
|
21
21
|
"prepare": "husky install",
|
|
22
22
|
"lint": "eslint src --max-warnings 0",
|
|
23
|
-
"test": "jest",
|
|
23
|
+
"test": "jest --transformIgnorePatterns \"node_modules/(?!axios)/\"",
|
|
24
24
|
"prepublishOnly": "npm run build",
|
|
25
25
|
"publish": "npm publish --access public"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"axios": "^1.
|
|
28
|
+
"axios": "^1.7.0",
|
|
29
29
|
"qs": "^6.9.6",
|
|
30
30
|
"ramda": "^0.27.1"
|
|
31
31
|
},
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"eslint-plugin-jest": "^24.1.5",
|
|
45
45
|
"eslint-plugin-prettier": "^3.3.1",
|
|
46
46
|
"husky": "^5.1.3",
|
|
47
|
-
"jest": "^
|
|
47
|
+
"jest": "^29.7.0",
|
|
48
48
|
"jest-html-reporters": "^2.1.2",
|
|
49
49
|
"prettier": "^2.2.1",
|
|
50
|
-
"ts-jest": "^
|
|
50
|
+
"ts-jest": "^29.2.4",
|
|
51
51
|
"typedoc": "^0.25.2",
|
|
52
52
|
"typescript": "^4.1.3"
|
|
53
53
|
},
|
|
@@ -70,9 +70,6 @@
|
|
|
70
70
|
"src/**/*.(t|j)s"
|
|
71
71
|
],
|
|
72
72
|
"coverageDirectory": "coverage",
|
|
73
|
-
"testEnvironment": "node"
|
|
74
|
-
"moduleNameMapper": {
|
|
75
|
-
"axios": "axios/dist/node/axios.cjs"
|
|
76
|
-
}
|
|
73
|
+
"testEnvironment": "node"
|
|
77
74
|
}
|
|
78
75
|
}
|