├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── maintenance-on-repositories.md ├── dependabot.yml └── workflows │ └── ossf-scorecard-reporting.yml ├── .gitignore ├── .npmrc ├── COC_POLICY.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GLOSSARY.md ├── LICENSE ├── README.md ├── contributors.json ├── docs └── tooling.md ├── guides ├── cartography-fr.md ├── contributor-en.md ├── contributor-fr.md └── images │ └── cartographie.png ├── images └── logo.png ├── meetings ├── 2022-03-23.md ├── 2022-05-03.md └── 2022-08-09.md ├── package.json ├── reports └── ossf_scorecard │ ├── database.json │ ├── report.md │ └── scope.json ├── scripts └── contributors.js └── views └── contributors.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance-on-repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/.github/ISSUE_TEMPLATE/maintenance-on-repositories.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard-reporting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/.github/workflows/ossf-scorecard-reporting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/.npmrc -------------------------------------------------------------------------------- /COC_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/COC_POLICY.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GLOSSARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/GLOSSARY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/README.md -------------------------------------------------------------------------------- /contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/contributors.json -------------------------------------------------------------------------------- /docs/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/docs/tooling.md -------------------------------------------------------------------------------- /guides/cartography-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/guides/cartography-fr.md -------------------------------------------------------------------------------- /guides/contributor-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/guides/contributor-en.md -------------------------------------------------------------------------------- /guides/contributor-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/guides/contributor-fr.md -------------------------------------------------------------------------------- /guides/images/cartographie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/guides/images/cartographie.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/images/logo.png -------------------------------------------------------------------------------- /meetings/2022-03-23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/meetings/2022-03-23.md -------------------------------------------------------------------------------- /meetings/2022-05-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/meetings/2022-05-03.md -------------------------------------------------------------------------------- /meetings/2022-08-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/meetings/2022-08-09.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/package.json -------------------------------------------------------------------------------- /reports/ossf_scorecard/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/reports/ossf_scorecard/database.json -------------------------------------------------------------------------------- /reports/ossf_scorecard/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/reports/ossf_scorecard/report.md -------------------------------------------------------------------------------- /reports/ossf_scorecard/scope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/reports/ossf_scorecard/scope.json -------------------------------------------------------------------------------- /scripts/contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/scripts/contributors.js -------------------------------------------------------------------------------- /views/contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/Governance/HEAD/views/contributors.html --------------------------------------------------------------------------------