This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@lion/localize",
|
|
"version": "0.15.5",
|
|
"description": "The localization system helps to manage localization data split into locales and automate its loading",
|
|
"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/localize"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"docs",
|
|
"src",
|
|
"test",
|
|
"test-helpers",
|
|
"translations",
|
|
"types"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group localize",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group localize",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group localize",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group localize"
|
|
},
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"@bundled-es-modules/message-format": "6.0.4",
|
|
"@lion/core": "0.13.8",
|
|
"singleton-manager": "1.2.1"
|
|
},
|
|
"keywords": [
|
|
"lion",
|
|
"localize",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./test-helpers": "./test-helpers.js"
|
|
}
|
|
}
|