lion/packages/input-email/package.json
2022-05-31 16:46:53 +02:00

60 lines
1.7 KiB
JSON

{
"name": "@lion/input-email",
"version": "0.15.0",
"description": "Provide a way for users to fill in an email",
"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/input-email"
},
"type": "module",
"main": "index.js",
"module": "index.js",
"files": [
"*.d.ts",
"*.js",
"custom-elements.json",
"docs",
"src",
"test",
"test-helpers",
"translations",
"types"
],
"scripts": {
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude \"docs/**/*\" \"test-helpers/**/*\"",
"debug": "cd ../../ && npm run debug -- --group input-email",
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group input-email",
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group input-email",
"publish-docs": "node ../../packages-node/publish-docs/src/cli.js --github-url https://github.com/ing-bank/lion/ --git-root-dir ../../",
"prepublishOnly": "npm run publish-docs && npm run custom-elements-manifest",
"test": "cd ../../ && npm run test:browser -- --group input-email"
},
"sideEffects": [
"lion-input-email.js"
],
"dependencies": {
"@lion/core": "^0.22.0",
"@lion/form-core": "^0.17.0",
"@lion/input": "^0.17.0",
"@lion/localize": "^0.24.0",
"@lion/validate-messages": "^0.9.0"
},
"keywords": [
"input-email",
"lion",
"web-components"
],
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json",
"exports": {
".": "./index.js",
"./define": "./lion-input-email.js",
"./docs/*": "./docs/*"
}
}