| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "@vendure/testing",
- "version": "2.1.0-next.1",
- "description": "End-to-end testing tools for Vendure projects",
- "keywords": [
- "vendure",
- "testing",
- "e2e"
- ],
- "author": "Michael Bromley <michael@michaelbromley.co.uk>",
- "homepage": "https://www.vendure.io/",
- "license": "MIT",
- "directories": {
- "lib": "lib"
- },
- "files": [
- "lib"
- ],
- "publishConfig": {
- "access": "public"
- },
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vendure-ecommerce/vendure.git"
- },
- "funding": "https://github.com/sponsors/michaelbromley",
- "scripts": {
- "build": "tsc -p ./tsconfig.build.json",
- "watch": "tsc -p ./tsconfig.build.json -w",
- "lint": "eslint --fix .",
- "ci": "yarn build"
- },
- "bugs": {
- "url": "https://github.com/vendure-ecommerce/vendure/issues"
- },
- "dependencies": {
- "@graphql-typed-document-node/core": "^3.2.0",
- "@types/node-fetch": "^2.6.4",
- "@vendure/common": "2.1.0-next.1",
- "faker": "^4.1.0",
- "form-data": "^4.0.0",
- "graphql": "16.8.0",
- "graphql-tag": "^2.12.6",
- "node-fetch": "^2.7.0",
- "sql.js": "1.8.0"
- },
- "devDependencies": {
- "@types/mysql": "^2.15.15",
- "@types/pg": "^7.14.5",
- "@vendure/core": "2.1.0-next.1",
- "mysql": "^2.18.1",
- "pg": "^8.4.0",
- "rimraf": "^3.0.0",
- "typescript": "4.9.5"
- }
- }
|