woocommerce/packages/js/api/package.json

101 lines
2.5 KiB
JSON
Raw Normal View History

{
2022-04-29 18:56:39 +00:00
"name": "@woocommerce/api",
2023-08-08 04:35:31 +00:00
"version": "0.3.0",
"author": "Automattic",
2022-04-29 18:56:39 +00:00
"description": "A simple interface for interacting with a WooCommerce installation.",
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/api/README.md",
"engines": {
"node": "^16.14.1",
"pnpm": "^8.6.7"
},
2022-04-29 18:56:39 +00:00
"repository": {
"type": "git",
"url": "https://github.com/woocommerce/woocommerce.git"
},
"keywords": [
"woocommerce",
"e2e"
],
2022-04-29 18:56:39 +00:00
"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,
2022-04-29 18:56:39 +00:00
"scripts": {
2023-11-02 21:49:41 +00:00
"build": "pnpm --if-present --filter=\"$npm_package_name...\" run build:project",
"build:project": "pnpm --if-present run /^build:project:.*$/",
"build:project:typescript": "wireit",
"changelog": "composer install && composer exec -- changelogger",
"lint": "pnpm --if-present run '/^lint:lang:.*$/'",
"lint:fix": "pnpm --if-present run '/^lint:fix:lang:.*$/'",
"lint:fix:lang:js": "eslint src --fix",
"lint:lang:js": "eslint --output-file eslint_report.json --format json src",
"prepack": "pnpm run build",
2023-11-02 21:49:41 +00:00
"test": "pnpm --if-present run '/^test:lang:.*$/'",
"test:lang:js": "wireit",
"watch:build": "pnpm run build:project --watch"
},
"lint-staged": {
"*.(t|j)s?(x)": [
"pnpm lint: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",
2023-12-09 15:12:20 +00:00
"@types/jest": "^27.5.2",
"@types/node": "^16.18.68",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@woocommerce/eslint-plugin": "workspace:*",
2023-12-09 15:12:20 +00:00
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.55.0",
"jest": "~27.5.1",
"ts-jest": "~29.1.1",
"typescript": "^5.3.3",
"wireit": "^0.14.1"
2022-04-29 18:56:39 +00:00
},
"publishConfig": {
"access": "public"
},
2023-11-02 21:49:41 +00:00
"wireit": {
"build:project:typescript": {
"command": "tsc --project tsconfig.json",
"files": [
"tsconfig.json",
"src/**/*.{js,jsx,ts,tsx}",
"typings/**/*.ts"
],
"output": [
"dist"
],
"dependencies": [
"dependencyOutputs"
]
},
"test:lang:js": {
2023-11-02 22:43:56 +00:00
"command": "jest --config ./jest.config.json --passWithNoTests",
2023-11-02 21:49:41 +00:00
"dependencies": [
"build:project"
]
},
"dependencyOutputs": {
"allowUsuallyExcludedPaths": true,
"files": [
"required"
]
}
2022-04-29 18:56:39 +00:00
}
2023-11-02 21:49:41 +00:00
}