This commit adds the exports entry in each package.json, exposing the public parts of each package and hiding the private ones.
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@lion/select",
|
|
"version": "0.8.16",
|
|
"description": "Provide a set of options where you can select one",
|
|
"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/select"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"docs",
|
|
"src",
|
|
"test",
|
|
"test-helpers",
|
|
"translations",
|
|
"types"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group select",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group select",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group select",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group select"
|
|
},
|
|
"sideEffects": [
|
|
"lion-select.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/core": "0.13.8",
|
|
"@lion/form-core": "0.7.3"
|
|
},
|
|
"keywords": [
|
|
"lion",
|
|
"select",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./lion-select": "./lion-select.js"
|
|
}
|
|
}
|