2018-11-06 21:53:22 +00:00
|
|
|
{
|
2020-02-14 02:23:21 +00:00
|
|
|
"name": "@woocommerce/csv-export",
|
2022-03-22 08:08:06 +00:00
|
|
|
"version": "1.5.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"description": "WooCommerce utility library to convert data to CSV files.",
|
|
|
|
"author": "Automattic",
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"keywords": [
|
|
|
|
"wordpress",
|
|
|
|
"woocommerce",
|
|
|
|
"csv"
|
|
|
|
],
|
2022-04-07 08:50:40 +00:00
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/csv-export/README.md",
|
2020-02-14 02:23:21 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-04-07 08:50:40 +00:00
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"bugs": {
|
2022-04-07 08:50:40 +00:00
|
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"main": "build/index.js",
|
|
|
|
"module": "build-module/index.js",
|
|
|
|
"react-native": "src/index",
|
|
|
|
"dependencies": {
|
2022-03-08 02:11:12 +00:00
|
|
|
"browser-filesaver": "^1.1.1",
|
|
|
|
"moment": "^2.29.1"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
2021-07-14 20:38:57 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-03-04 04:01:16 +00:00
|
|
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
2021-07-14 20:38:57 +00:00
|
|
|
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
|
|
|
"start": "tsc --build --watch",
|
2022-03-04 04:01:16 +00:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
2022-03-28 08:42:22 +00:00
|
|
|
"lint": "eslint src",
|
2022-03-04 04:01:16 +00:00
|
|
|
"test": "pnpm run build && pnpm run test:nobuild",
|
2021-07-14 20:38:57 +00:00
|
|
|
"test:nobuild": "jest --config ./jest.config.json",
|
|
|
|
"test-staged": "jest --bail --config ./jest.config.json --findRelatedTests"
|
2022-03-15 03:04:46 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/core": "^7.17.5",
|
2022-03-28 08:42:22 +00:00
|
|
|
"@wordpress/eslint-plugin": "^11.0.0",
|
|
|
|
"eslint": "^8.12.0",
|
2022-03-15 03:04:46 +00:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
"jest-cli": "^27.5.1",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"ts-jest": "^27.1.3",
|
|
|
|
"typescript": "^4.6.2"
|
2022-04-06 08:58:17 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
|
|
|
"eslint --fix",
|
|
|
|
"pnpm test-staged"
|
|
|
|
]
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
2018-11-06 21:53:22 +00:00
|
|
|
}
|