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.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "@lion/progress-indicator",
|
|
"version": "0.2.10",
|
|
"description": "A progress indicator that is easily styleable and accessible in all contexts",
|
|
"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/progress-indicator"
|
|
},
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"files": [
|
|
"*.d.ts",
|
|
"*.js",
|
|
"src",
|
|
"test",
|
|
"translations",
|
|
"types"
|
|
],
|
|
"scripts": {
|
|
"debug": "cd ../../ && npm run debug -- --group progress-indicator",
|
|
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group progress-indicator",
|
|
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group progress-indicator",
|
|
"prepublishOnly": "../../scripts/npm-prepublish.js",
|
|
"test": "cd ../../ && npm run test:browser -- --group progress-indicator"
|
|
},
|
|
"sideEffects": [
|
|
"lion-progress-indicator.js"
|
|
],
|
|
"dependencies": {
|
|
"@lion/core": "0.13.8",
|
|
"@lion/localize": "0.15.5"
|
|
},
|
|
"keywords": [
|
|
"lion",
|
|
"loading-indicator",
|
|
"progress-indicator",
|
|
"spinner",
|
|
"web-components"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": "./index.js",
|
|
"./lion-progress-indicator": "./lion-progress-indicator.js"
|
|
}
|
|
}
|