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

64 lines
1.9 KiB
JSON

{
"name": "@lion/form-core",
"version": "0.17.1",
"description": "Form-core contains all essential building blocks for creating form fields and fieldsets",
"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/field"
},
"type": "module",
"main": "index.js",
"module": "index.js",
"files": [
"*.d.ts",
"*.js",
"custom-elements.json",
"docs",
"src",
"test",
"test-helpers",
"test-suites",
"translations",
"types"
],
"scripts": {
"custom-elements-manifest": "custom-elements-manifest analyze --litelement --exclude \"docs/**/*\" \"test-helpers/**/*\"",
"debug": "cd ../../ && npm run debug -- --group form-core",
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group form-core",
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group form-core",
"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 form-core"
},
"sideEffects": [
"define.js",
"lion-field.js",
"lion-validation-feedback.js"
],
"dependencies": {
"@lion/core": "^0.22.0",
"@lion/localize": "^0.24.0"
},
"keywords": [
"field",
"lion",
"web-components"
],
"publishConfig": {
"access": "public"
},
"customElements": "custom-elements.json",
"exports": {
".": "./index.js",
"./test-helpers": "./test-helpers/index.js",
"./test-suites": "./test-suites/index.js",
"./define": "./define.js",
"./define-field": "./lion-field.js",
"./define-validation-feedback": "./lion-validation-feedback.js",
"./docs/*": "./docs/*"
}
}