This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "@lion/fieldset",
|
|
"version": "0.15.16",
|
|
"description": "Allows to groups multiple input fields or other fieldsets together",
|
|
"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/fieldset"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"docs",
|
|
"src",
|
|
"test",
|
|
"test-helpers",
|
|
"translations",
|
|
"types"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group fieldset",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group fieldset",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group fieldset",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group fieldset"
|
|
},
|
|
"sideEffects": [
|
|
"lion-fieldset.js",
|
|
"./docs/helpers/demo-fieldset-child.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/core": "0.13.8",
|
|
"@lion/form-core": "0.7.3"
|
|
},
|
|
"keywords": [
|
|
"fieldset",
|
|
"lion",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./lion-fieldset": "./lion-fieldset.js"
|
|
}
|
|
}
|