You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
JSON
33 lines
1.0 KiB
JSON
{
|
|
"name": "@ardee-tech/sylius-rest-integration-sdk",
|
|
"version": "0.1.0",
|
|
"main": "lib/index.cjs.js",
|
|
"module": "lib/index.es.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf lib && rollup -c",
|
|
"dev": "rimraf lib && rollup -c -w",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "yarn test:unit && yarn test:integration",
|
|
"test:unit": "jest ./unit -c ./jest.config.unit.js",
|
|
"test:integration": "jest ./integration -c ./jest.config.integration.js --runInBand",
|
|
"test:integration:init": "rm -rf __tests__/integration/__nock-fixtures__ && jest ./integration -c ./jest.config.integration.js --runInBand",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage --passWithNoTests",
|
|
"prepublish": "yarn build"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.27.2"
|
|
},
|
|
"devDependencies": {
|
|
"@ardee-tech/sylius-rest-integration-api": "0.1.0",
|
|
"@vue-storefront/sdk": "1.0.1",
|
|
"nock": "^13.2.9",
|
|
"msw": "^0.47.3",
|
|
"rollup-plugin-typescript2": "^0.34.1"
|
|
}
|
|
}
|