2022-09-28 04:35:42 +00:00
|
|
|
{
|
2022-09-28 08:06:35 +00:00
|
|
|
"name": "@omnivore/content-handler",
|
2022-09-28 04:35:42 +00:00
|
|
|
"version": "1.0.0",
|
2022-09-28 08:06:35 +00:00
|
|
|
"description": "A standalone version of content handler to parse and format each type of content",
|
2022-09-28 04:35:42 +00:00
|
|
|
"main": "build/src/index.js",
|
|
|
|
|
"types": "build/src/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"build/src"
|
|
|
|
|
],
|
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
|
2023-10-23 21:20:47 +00:00
|
|
|
"test:typecheck": "tsc --noEmit",
|
2022-09-28 04:35:42 +00:00
|
|
|
"lint": "eslint src --ext ts,js,tsx,jsx",
|
|
|
|
|
"compile": "tsc",
|
|
|
|
|
"build": "tsc"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-10-03 06:21:31 +00:00
|
|
|
"@types/addressparser": "^1.0.1",
|
2023-04-25 04:23:37 +00:00
|
|
|
"@types/lodash": "^4.14.194",
|
2022-10-03 06:21:31 +00:00
|
|
|
"@types/luxon": "^3.0.1",
|
|
|
|
|
"@types/rfc2047": "^2.0.1",
|
|
|
|
|
"@types/underscore": "^1.11.4",
|
|
|
|
|
"@types/uuid": "^8.3.4",
|
2022-09-30 04:42:41 +00:00
|
|
|
"chai": "^4.3.6",
|
|
|
|
|
"chai-as-promised": "^7.1.1",
|
|
|
|
|
"chai-string": "^1.5.0",
|
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
|
"mocha": "^10.0.0",
|
|
|
|
|
"nock": "^13.2.9"
|
2022-09-29 05:28:07 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-09-29 10:40:44 +00:00
|
|
|
"addressparser": "^1.0.1",
|
2022-09-29 05:28:07 +00:00
|
|
|
"axios": "^0.27.2",
|
2024-01-16 07:42:50 +00:00
|
|
|
"ioredis": "^5.3.2",
|
2022-09-29 05:28:07 +00:00
|
|
|
"linkedom": "^0.14.16",
|
2023-04-25 03:39:55 +00:00
|
|
|
"lodash": "^4.17.21",
|
2022-09-29 05:28:07 +00:00
|
|
|
"luxon": "^3.0.4",
|
2024-01-15 15:32:26 +00:00
|
|
|
"puppeteer-core": "^20.9.0",
|
2022-09-29 10:40:44 +00:00
|
|
|
"underscore": "^1.13.6",
|
|
|
|
|
"uuid": "^9.0.0"
|
2023-10-23 21:20:47 +00:00
|
|
|
},
|
|
|
|
|
"volta": {
|
|
|
|
|
"extends": "../../package.json"
|
2022-09-28 04:35:42 +00:00
|
|
|
}
|
|
|
|
|
}
|