lion/packages/radio-group/package.json
Manuel Martin b2f981db72 refactor: add package exports entry
This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
2021-02-15 17:49:22 +01:00

54 lines
1.3 KiB
JSON

{
"name": "@lion/radio-group",
"version": "0.12.16",
"description": "Manage a group of choices",
"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/radio-group"
},
"main": "index.js",
"module": "index.js",
"files": [
"*.d.ts",
"*.js",
"docs",
"src",
"test",
"test-helpers",
"translations",
"types"
],
"scripts": {
"debug": "cd ../../ && npm run debug -- --group radio-group",
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group radio-group",
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group radio-group",
"prepublishOnly": "../../scripts/npm-prepublish.js",
"test": "cd ../../ && npm run test:browser -- --group radio-group"
},
"sideEffects": [
"lion-radio.js",
"lion-radio-group.js"
],
"dependencies": {
"@lion/core": "0.13.8",
"@lion/form-core": "0.7.3",
"@lion/input": "0.10.16"
},
"keywords": [
"lion",
"radio-group",
"web-components"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": "./index.js",
"./lion-radio": "./lion-radio.js",
"./lion-radio-group": "./lion-radio-group.js"
}
}