* use initModules instead of initialize when runnning auth module integration tests * rm unused module-config * correct db schema fix * update authentication integration tests w/ initModule * update cart integration tests w/ initModule * update customer integration tests w/ initModule * update payment integration tests w/ initModule * update pricing integration tests w/ initModule * update product integration tests w/ initModule * update promotion integration tests w/ initModule * add initModule to more product tests and return medusaApp from initModule * align moduleOptions naming * update dependencies
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "medusa-test-utils",
|
|
"version": "1.1.41",
|
|
"description": "Test utils for Medusa",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/medusa-test-utils"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "cross-env NODE_ENV=production tsc --build",
|
|
"prepare": "cross-env NODE_ENV=production yarn run build",
|
|
"build": "rimraf dist && tsc --build",
|
|
"watch": "tsc --build --watch",
|
|
"test": "jest --passWithNoTests src"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": "Sebastian Rindom",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"cross-env": "^5.2.1",
|
|
"jest": "^25.5.4",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"@medusajs/modules-sdk": "workspace:^",
|
|
"@medusajs/utils": "workspace:^",
|
|
"@mikro-orm/migrations": "5.9.7",
|
|
"@mikro-orm/postgresql": "5.9.7",
|
|
"medusa-core-utils": "^1.2.1",
|
|
"pg-god": "^1.0.12",
|
|
"randomatic": "^3.1.1"
|
|
},
|
|
"gitHead": "81a7ff73d012fda722f6e9ef0bd9ba0232d37808"
|
|
}
|