26 lines
620 B
JSON
26 lines
620 B
JSON
{
|
|
"name": "@omnivore/utils",
|
|
"version": "1.0.0",
|
|
"description": "Utility functions for Omnivore packages.",
|
|
"main": "./build/src/index.js",
|
|
"types": "./build/src/index.d.ts",
|
|
"scripts": {
|
|
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
|
|
"lint": "eslint src --ext ts,js,tsx,jsx",
|
|
"build": "tsc"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.6",
|
|
"@types/mocha": "^10.0.0",
|
|
"chai": "^4.3.6",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"mocha": "^10.0.0"
|
|
},
|
|
"dependencies": {
|
|
"ioredis": "^5.3.2"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
}
|
|
}
|