1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/infrastructure/lens-link/package.json
Janne Savolainen 5dc00e7b2d
chore: Add lodash to dependencies
Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-04-21 15:58:16 +03:00

47 lines
1.1 KiB
JSON

{
"name": "@k8slens/lens-link",
"private": false,
"version": "1.0.0-alpha.0",
"description": "Equivalent for npm link, but doing it properly.",
"type": "commonjs",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/lens.git"
},
"main": "dist/index.js",
"author": {
"name": "OpenLens Authors",
"email": "info@k8slens.dev"
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"dependencies": {
"@ogre-tools/fp": "^15.3.1",
"@ogre-tools/injectable": "^15.3.1",
"@ogre-tools/injectable-extension-for-auto-registration": "^15.3.1",
"fs-extra": "^9.0.1",
"fast-glob": "^3.2.12",
"lodash": "^4.17.21"
},
"devDependencies": {
"@async-fn/jest": "^1.6.4"
},
"scripts": {
"clean": "rimraf dist/",
"build": "webpack",
"dev-build": "webpack --watch",
"test:unit": "jest --coverage --runInBand",
"lint": "lens-lint",
"lint:fix": "lens-lint --fix",
"mikko": "chmod +x ./dist/index.js; node ./dist/index.js"
}
}