47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "@omnivore/content-handler",
|
||
|
"version": "1.0.0",
|
||
|
"description": "A standalone version of content handler to parse and format each type of content",
|
||
|
"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",
|
||
|
"test:typecheck": "tsc --noEmit",
|
||
|
"lint": "eslint src --ext ts,js,tsx,jsx",
|
||
|
"compile": "tsc",
|
||
|
"build": "tsc"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/addressparser": "^1.0.1",
|
||
|
"@types/lodash": "^4.14.194",
|
||
|
"@types/luxon": "^3.0.1",
|
||
|
"@types/rfc2047": "^2.0.1",
|
||
|
"@types/underscore": "^1.11.4",
|
||
|
"@types/uuid": "^8.3.4",
|
||
|
"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"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"addressparser": "^1.0.1",
|
||
|
"axios": "^0.27.2",
|
||
|
"linkedom": "^0.14.16",
|
||
|
"lodash": "^4.17.21",
|
||
|
"luxon": "^3.0.4",
|
||
|
"puppeteer-core": "^19.1.1",
|
||
|
"redis": "^4.3.1",
|
||
|
"underscore": "^1.13.6",
|
||
|
"uuid": "^9.0.0"
|
||
|
},
|
||
|
"volta": {
|
||
|
"extends": "../../package.json"
|
||
|
}
|
||
|
}
|