2021-08-23 17:39:03 +00:00
|
|
|
{
|
2022-04-29 22:04:41 +00:00
|
|
|
"name": "@woocommerce/api-core-tests",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "API tests for WooCommerce",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"test": "jest",
|
|
|
|
"test:api": "jest --group=api",
|
|
|
|
"test:hello": "jest --group=hello",
|
|
|
|
"make:collection": "node utils/api-collection/build-collection.js",
|
2022-05-05 03:02:50 +00:00
|
|
|
"report": "allure generate --clean && allure serve",
|
|
|
|
"lint": "eslint data endpoints tests utils --ext=js,ts,tsx",
|
|
|
|
"lint:fix": "eslint data endpoints tests utils --ext=js,ts,tsx --fix"
|
2022-04-29 22:04:41 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/woocommerce/woocommerce.git"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0+",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce#readme",
|
|
|
|
"dependencies": {
|
|
|
|
"allure-commandline": "^2.17.2",
|
|
|
|
"dotenv": "^10.0.0",
|
|
|
|
"jest": "^25.1.0",
|
|
|
|
"jest-allure": "^0.1.3",
|
|
|
|
"jest-runner-groups": "^2.1.0",
|
|
|
|
"postman-collection": "^4.1.0",
|
|
|
|
"supertest": "^6.1.4"
|
|
|
|
},
|
2022-05-05 03:02:50 +00:00
|
|
|
"devDependencies": {
|
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
|
|
"eslint": "^8.12.0"
|
|
|
|
},
|
2022-04-29 22:04:41 +00:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"wc-api-tests": "bin/wc-api-tests.sh"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
|
|
|
"eslint --fix"
|
|
|
|
]
|
|
|
|
}
|
2021-08-23 17:39:03 +00:00
|
|
|
}
|