UNPKG

@marketicons/bist-react

Version:

React components for BIST stock market logos

74 lines (73 loc) 1.74 kB
{ "name": "@marketicons/bist-react", "version": "1.0.0", "description": "React components for BIST stock market logos", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsup src/index.tsx --format esm,cjs --dts --external react", "dev": "tsup src/index.tsx --format esm,cjs --watch --dts --external react", "clean": "rm -rf dist", "typecheck": "tsc --noEmit", "lint": "eslint \"src/**/*.ts*\"", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "prepublishOnly": "npm run build" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "dependencies": { "@marketicons/bist": "*", "@marketicons/markets": "*" }, "devDependencies": { "@swc/core": "^1.10.16", "@testing-library/jest-dom": "^6.1.5", "@testing-library/react": "^14.1.2", "@types/jest": "^29.5.11", "@types/react": "^18.2.45", "@types/react-dom": "^18.2.18", "@types/testing-library__jest-dom": "^5.14.9", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "ts-jest": "^29.1.1", "tsup": "^8.0.1", "typescript": "^5.3.3" }, "keywords": [ "react", "bist", "borsa", "istanbul", "stock", "market", "icons", "logos", "svg" ], "author": "", "license": "MIT", "publishConfig": { "access": "public" }, "jest": { "preset": "ts-jest", "testEnvironment": "jsdom", "setupFilesAfterEnv": [ "./jest.setup.ts" ], "moduleNameMapper": { "^@/(.*)$": "<rootDir>/src/$1" }, "transform": { "^.+\\.tsx?$": "ts-jest" } } }