moz.yaml (1715B)
1 # Version of this schema 2 schema: 1 3 4 bugzilla: 5 # Bugzilla product and component for this directory and subdirectories 6 product: Firefox 7 component: General 8 9 # Document the source of externally hosted code 10 origin: 11 12 # Short name of the package/library 13 name: prosemirror-transform 14 15 description: ProseMirror document transformations 16 17 # Full URL for the package's homepage/etc 18 # Usually different from repository url 19 url: https://prosemirror.net/ 20 21 # Human-readable identifier for this version/release 22 # Generally "version NNN", "tag SSS", "bookmark SSS" 23 release: 1.10.5 (2025-11-11T09:10:08+01:00). 24 25 # Revision to pull in 26 # Must be a long or short commit SHA (long preferred) or a tag 27 revision: 1.10.5 28 29 # The package's license, where possible using the mnemonic from 30 # https://spdx.org/licenses/ 31 # Multiple licenses can be specified (as a YAML list) 32 # A "LICENSE" file must exist containing the full license text 33 license: MIT 34 35 # If the package's license is specified in a particular file, 36 # this is the name of the file. 37 # optional 38 license-file: LICENSE 39 40 # Configuration for the automated vendoring system. 41 # optional 42 vendoring: 43 44 # Repository URL to vendor from 45 # eg. https://github.com/kinetiknz/nestegg 46 # Any repository host can be specified here, however initially we'll only 47 # support automated vendoring from selected sources. 48 url: https://github.com/ProseMirror/prosemirror-transform 49 50 # Type of hosting for the upstream repository 51 # Valid values are 'gitlab', 'github', googlesource 52 source-hosting: github 53 54 # Whether to track by commit or tag 55 tracking: tag 56 57 exclude: 58 - "**" 59 60 include: 61 - LICENSE 62 - src/ 63 - style/ 64 - package.json