2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 09:19:02 +00:00
iconify/packages/api-redundancy/package.json

46 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "@iconify/api-redundancy",
"description": "Reusable redundancy library for API queries",
2022-06-30 06:13:25 +00:00
"version": "1.1.1",
"author": "Vjacheslav Trushkin",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
2021-09-23 20:38:00 +00:00
"./*": "./*",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"lint": "eslint src/*.ts",
"prebuild": "pnpm run lint",
"build": "tsup src/index.ts --dts --format esm,cjs",
"test:jest": "jest --runInBand",
"test:jasmine": "cross-env NODE_OPTIONS=--experimental-vm-modules jasmine",
2022-06-19 19:40:13 +00:00
"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",
2022-01-25 17:55:40 +00:00
"eslint-plugin-jasmine": "^4.1.3",
"jasmine": "^4.2.1",
2022-06-19 19:40:13 +00:00
"jest": "28.0.0-alpha.11",
"ts-jest": "28.0.0-next.3",
"tsup": "^5.12.9"
}
}