2020-06-06 23:44:44 +00:00
|
|
|
{
|
2022-04-29 18:56:39 +00:00
|
|
|
"name": "@woocommerce/api",
|
|
|
|
"version": "0.2.0",
|
|
|
|
"author": "Automattic",
|
|
|
|
"description": "A simple interface for interacting with a WooCommerce installation.",
|
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/api/README.md",
|
2022-09-26 22:30:52 +00:00
|
|
|
"engines": {
|
|
|
|
"node": "^16.13.1",
|
2022-10-10 03:59:51 +00:00
|
|
|
"pnpm": "^7.13.3"
|
2022-09-26 22:30:52 +00:00
|
|
|
},
|
2022-04-29 18:56:39 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"woocommerce",
|
|
|
|
"e2e"
|
|
|
|
],
|
|
|
|
"license": "GPL-3.0+",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"/dist/",
|
|
|
|
"!*.ts.map",
|
|
|
|
"!*.tsbuildinfo",
|
|
|
|
"!/dist/**/__tests__/",
|
|
|
|
"!/dist/**/__mocks__/",
|
|
|
|
"!/dist/**/__snapshops__/",
|
|
|
|
"!/dist/**/__test_data__/"
|
|
|
|
],
|
|
|
|
"sideEffects": false,
|
|
|
|
"scripts": {
|
2022-08-05 00:03:17 +00:00
|
|
|
"turbo:build": "pnpm run clean && npm run compile",
|
|
|
|
"turbo:test": "jest",
|
2022-09-15 21:21:42 +00:00
|
|
|
"test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name",
|
2022-07-07 02:53:59 +00:00
|
|
|
"prepare": "composer install",
|
2022-06-09 21:40:07 +00:00
|
|
|
"changelog": "composer exec -- changelogger",
|
2022-04-29 18:56:39 +00:00
|
|
|
"clean": "rm -rf ./dist ./tsconfig.tsbuildinfo",
|
|
|
|
"compile": "tsc -b",
|
|
|
|
"prepack": "pnpm run build",
|
2022-09-15 21:21:42 +00:00
|
|
|
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
|
2022-08-05 00:03:17 +00:00
|
|
|
"lint": "eslint src",
|
|
|
|
"lint:fix": "eslint src --fix"
|
2022-04-29 18:56:39 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"axios": "^0.24.0",
|
|
|
|
"create-hmac": "1.1.7",
|
|
|
|
"oauth-1.0a": "2.2.6"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/create-hmac": "1.1.0",
|
2022-09-06 14:29:45 +00:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-04-29 18:56:39 +00:00
|
|
|
"@types/node": "13.13.5",
|
2023-03-08 21:13:25 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
|
|
"@typescript-eslint/parser": "^5.54.0",
|
2022-10-12 02:05:01 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2022-04-29 18:56:39 +00:00
|
|
|
"axios-mock-adapter": "^1.20.0",
|
2023-02-02 10:25:04 +00:00
|
|
|
"eslint": "^8.32.0",
|
2022-09-06 14:29:45 +00:00
|
|
|
"jest": "^27",
|
|
|
|
"ts-jest": "^27",
|
2022-09-29 21:59:07 +00:00
|
|
|
"typescript": "^4.8.3"
|
2022-04-29 18:56:39 +00:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
|
|
|
"pnpm lint:fix"
|
|
|
|
]
|
|
|
|
}
|
2020-06-06 23:44:44 +00:00
|
|
|
}
|