mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 14:20:57 +00:00
47 lines
1.3 KiB
JSON
47 lines
1.3 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",
|
|
"monorepo:postinstall": "npm run build",
|
|
"test:jest": "jest --runInBand",
|
|
"test:jasmine": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jasmine",
|
|
"test": "npm run test:jest && npm 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.4.1",
|
|
"@types/node": "^17.0.22",
|
|
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
|
"@typescript-eslint/parser": "^5.16.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.11.0",
|
|
"eslint-plugin-jasmine": "^4.1.3",
|
|
"jasmine": "^4.0.2",
|
|
"jest": "^27.5.1",
|
|
"ts-jest": "^27.1.3",
|
|
"tsup": "^5.12.1"
|
|
}
|
|
}
|