mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "@iconify/api-redundancy",
|
|
"description": "Reusable redundancy library for API queries",
|
|
"version": "1.1.0",
|
|
"author": "Vjacheslav Trushkin",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"./*": "./*",
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src/*.ts",
|
|
"prebuild": "[npm run lint",
|
|
"build": "tsup src/index.ts --dts --format esm,cjs",
|
|
"test:jest": "jest --runInBand",
|
|
"test:jasmine": "cross-env NODE_OPTIONS=--experimental-vm-modules pnpm dlx jasmine",
|
|
"test": "pnpm run test:jest && pnpm run test:jasmine"
|
|
},
|
|
"bugs": "https://github.com/iconify/iconify/issues",
|
|
"homepage": "https://iconify.design/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iconify/iconify.git",
|
|
"directory": "packages/api-redundancy"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.5.2",
|
|
"@types/node": "^17.0.45",
|
|
"@typescript-eslint/eslint-plugin": "^5.28.0",
|
|
"@typescript-eslint/parser": "^5.28.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.18.0",
|
|
"eslint-plugin-jasmine": "^4.1.3",
|
|
"jasmine": "^4.2.1",
|
|
"jest": "28.0.0-alpha.11",
|
|
"ts-jest": "28.0.0-next.3",
|
|
"tsup": "^5.12.9"
|
|
}
|
|
}
|