58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"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",
|
|
"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": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"clean": "rm -rf ./dist ./tsconfig.tsbuildinfo",
|
|
"compile": "tsc -b",
|
|
"build": "pnpm run clean && npm run compile",
|
|
"prepare": "pnpm run build",
|
|
"lint": "eslint src",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^0.24.0",
|
|
"create-hmac": "1.1.7",
|
|
"oauth-1.0a": "2.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/create-hmac": "1.1.0",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "13.13.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.3.1",
|
|
"@typescript-eslint/parser": "^5.3.1",
|
|
"axios-mock-adapter": "^1.20.0",
|
|
"eslint": "^8.2.0",
|
|
"jest": "^27.3.1",
|
|
"ts-jest": "25.5.0",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|