woocommerce/packages/js/api-core-tests/package.json

43 lines
1.0 KiB
JSON
Raw Normal View History

2021-08-23 17:39:03 +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",
2022-03-30 02:57:11 +00:00
"make:collection": "node utils/api-collection/build-collection.js",
"report": "allure generate --clean && allure serve"
2021-08-23 17:39:03 +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": {
2022-03-30 02:57:11 +00:00
"allure-commandline": "^2.17.2",
2021-08-23 17:39:03 +00:00
"dotenv": "^10.0.0",
"jest": "^25.1.0",
2022-03-30 02:57:11 +00:00
"jest-allure": "^0.1.3",
2021-08-23 17:39:03 +00:00
"jest-runner-groups": "^2.1.0",
"postman-collection": "^4.1.0",
"supertest": "^6.1.4"
},
2021-12-03 18:28:54 +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
}
}