This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "@lion/checkbox-group",
|
|
"version": "0.13.1",
|
|
"description": "A container for multiple checkboxes",
|
|
"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/checkbox-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 checkbox-group",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group checkbox-group",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group checkbox-group",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group checkbox-group"
|
|
},
|
|
"sideEffects": [
|
|
"lion-checkbox.js",
|
|
"lion-checkbox-group.js",
|
|
"lion-checkbox-indeterminate.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/core": "0.13.8",
|
|
"@lion/form-core": "0.7.3",
|
|
"@lion/input": "0.10.16"
|
|
},
|
|
"keywords": [
|
|
"checkbox-group",
|
|
"lion",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./lion-checkbox": "./lion-checkbox.js",
|
|
"./lion-checkbox-group": "./lion-checkbox-group.js",
|
|
"./lion-checkbox-indeterminate": "./lion-checkbox-indeterminate.js"
|
|
}
|
|
}
|