@focuson/lens
Version:
A simple implementation of lens using type script
62 lines • 1.25 kB
JSON
{
"name": "@focuson/lens",
"description": "A simple implementation of lens using type script",
"version": "1.44.3",
"main": "dist/index",
"types": "dist/index",
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"@focuson/utils": "1.44.3",
"debug": "^4.3.4"
},
"devDependencies": {
"eslint": "^8.52.0",
"typescript": "^5.2.2",
"jest": "29.1.1",
"ts-jest": "^29.1.1",
"@types/jest": "29.1.1",
"@types/node": "^18.0.0",
"npm-check-updates": "^10.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/src/"
],
"keywords": [
"runbook"
],
"license": "MIT",
"repository": "",
"scripts": {
"test": "jest --config jest.config.json --env node",
"test:watch": "npm run test -- --watch"
}
}