This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@lion/input-datepicker",
|
|
"version": "0.18.18",
|
|
"description": "Provide a way for users to fill in a date via a calendar overlay",
|
|
"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/input-datepicker"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"docs",
|
|
"src",
|
|
"test",
|
|
"test-helpers",
|
|
"translations",
|
|
"types"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group input-datepicker",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-datepicker",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-datepicker",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group input-datepicker"
|
|
},
|
|
"sideEffects": [
|
|
"lion-input-datepicker.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/calendar": "0.12.11",
|
|
"@lion/core": "0.13.8",
|
|
"@lion/form-core": "0.7.3",
|
|
"@lion/input-date": "0.8.16",
|
|
"@lion/localize": "0.15.5",
|
|
"@lion/overlays": "0.23.4",
|
|
"@lion/validate-messages": "0.3.16"
|
|
},
|
|
"keywords": [
|
|
"calendar",
|
|
"datepicker",
|
|
"input-date",
|
|
"input-datepicker",
|
|
"lion",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./test-helpers/*": "./test-helpers/*",
|
|
"./lion-input-datepicker": "./lion-input-datepicker.js"
|
|
}
|
|
}
|