This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "@lion/input-stepper",
|
|
"version": "0.1.17",
|
|
"description": "This component enables the user to increase and decrease a numeric value by predefined range.",
|
|
"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-stepper"
|
|
},
|
|
"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-stepper",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-stepper",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-stepper",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group input-stepper"
|
|
},
|
|
"sideEffects": [
|
|
"lion-input-stepper.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/core": "0.13.8",
|
|
"@lion/form-core": "0.7.3",
|
|
"@lion/input": "0.10.16"
|
|
},
|
|
"keywords": [
|
|
"input",
|
|
"input-stepper",
|
|
"lion",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./lion-input-stepper": "./lion-input-stepper.js"
|
|
}
|
|
}
|