This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "@lion/helpers",
|
|
"version": "0.5.20",
|
|
"description": "Helpers that are used throughout lion and can be used outside",
|
|
"license": "MIT",
|
|
"author": "ing-bank",
|
|
"homepage": "https://github.com/ing-bank/lion/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ing-bank/lion.git",
|
|
"directory": "packages/helpers"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"renderLitAsNode",
|
|
"sb-action-logger",
|
|
"sb-locale-switcher",
|
|
"sortEachDepth"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group helpers",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group helpers",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group helpers",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group helpers"
|
|
},
|
|
"sideEffects": [
|
|
"sb-action-logger.js",
|
|
"sb-locale-switcher.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/core": "0.13.8"
|
|
},
|
|
"keywords": [
|
|
"action logger",
|
|
"helpers",
|
|
"lion",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./sb-action-logger": "./sb-action-logger.js",
|
|
"./sb-locale-switcher": "./sb-locale-switcher.js"
|
|
}
|
|
}
|