@mountainpass/problem-document 0.0.39 → 0.0.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.cspell.json ADDED
@@ -0,0 +1,126 @@
1
+ {
2
+ "language": "en-GB",
3
+ "words": [
4
+ "MarkMcCulloh",
5
+ "vscode-projen",
6
+ "dbaeumer",
7
+ "vscode-eslint",
8
+ "streetsidesoftware",
9
+ "code-spell-checker",
10
+ "adam-bender",
11
+ "commit-message-editor",
12
+ "commitlint",
13
+ "cli",
14
+ "config-conventional",
15
+ "mountainpass",
16
+ "cool-bits-for-projen",
17
+ "types",
18
+ "http-status-codes",
19
+ "jest",
20
+ "node",
21
+ "typescript-eslint",
22
+ "eslint-plugin",
23
+ "parser",
24
+ "cspell",
25
+ "eslint-config-prettier",
26
+ "eslint-import-resolver-node",
27
+ "eslint-import-resolver-typescript",
28
+ "eslint-plugin-import",
29
+ "eslint-plugin-jsdoc",
30
+ "eslint-plugin-prettier",
31
+ "eslint-plugin-unicorn",
32
+ "eslint",
33
+ "husky",
34
+ "jest-junit",
35
+ "json-schema",
36
+ "npm-check-updates",
37
+ "prettier",
38
+ "projen",
39
+ "standard-version",
40
+ "ts-jest",
41
+ "ts-node",
42
+ "typescript",
43
+ "projenrc",
44
+ "docgen",
45
+ "unbump",
46
+ "lcov",
47
+ "cobertura",
48
+ "applypatch-msg",
49
+ "pre-applypatch",
50
+ "post-applypatch",
51
+ "pre-commit",
52
+ "pre-merge-commit",
53
+ "prepare-commit-msg",
54
+ "commit-msg",
55
+ "post-commit",
56
+ "pre-rebase",
57
+ "post-checkout",
58
+ "post-merge",
59
+ "pre-push",
60
+ "pre-receive",
61
+ "update",
62
+ "proc-receive",
63
+ "post-receive",
64
+ "post-update",
65
+ "reference-transaction",
66
+ "push-to-checkout",
67
+ "pre-auto-gc",
68
+ "post-rewrite",
69
+ "sendemail-validate",
70
+ "fsmonitor-watchman",
71
+ "p4-changelist",
72
+ "p4-prepare-changelist",
73
+ "p4-post-changelist",
74
+ "p4-pre-submit",
75
+ "post-index-change"
76
+ ],
77
+ "dictionaryDefinitions": [
78
+ {
79
+ "name": "project-words",
80
+ "path": "./.project-words.txt",
81
+ "addWords": true
82
+ }
83
+ ],
84
+ "dictionaries": [
85
+ "project-words"
86
+ ],
87
+ "ignorePaths": [
88
+ "docs",
89
+ ".commitlintrc.json",
90
+ ".eslintrc.json",
91
+ ".gitattributes",
92
+ ".github/pull_request_template.md",
93
+ ".github/workflows/build.yml",
94
+ ".github/workflows/pull-request-lint.yml",
95
+ ".github/workflows/release.yml",
96
+ ".github/workflows/upgrade-main.yml",
97
+ ".gitignore",
98
+ ".husky/commit-msg",
99
+ ".husky/pre-commit",
100
+ ".husky/pre-push",
101
+ ".mergify.yml",
102
+ ".npmignore",
103
+ ".prettierignore",
104
+ ".prettierrc.json",
105
+ ".projen/deps.json",
106
+ ".projen/files.json",
107
+ ".projen/tasks.json",
108
+ ".vscode/extensions.json",
109
+ "CODE_OF_CONDUCT.md",
110
+ "LICENSE",
111
+ "package.json",
112
+ "tsconfig.dev.json",
113
+ "tsconfig.json",
114
+ ".cspell.json"
115
+ ],
116
+ "overrides": [
117
+ {
118
+ "language": "en",
119
+ "filename": "CODE_OF_CONDUCT.md",
120
+ "words": [
121
+ "socio-economic"
122
+ ]
123
+ }
124
+ ],
125
+ "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
126
+ }
package/.gitattributes CHANGED
@@ -2,17 +2,18 @@
2
2
 
3
3
  *.snap linguist-generated
4
4
  /.commitlintrc.json linguist-generated
5
+ /.cspell.json linguist-generated
5
6
  /.eslintrc.json linguist-generated
6
7
  /.gitattributes linguist-generated
7
- /.github/dependabot.yml linguist-generated
8
8
  /.github/pull_request_template.md linguist-generated
9
- /.github/workflows/auto-approve.yml linguist-generated
10
9
  /.github/workflows/build.yml linguist-generated
11
10
  /.github/workflows/pull-request-lint.yml linguist-generated
12
11
  /.github/workflows/release.yml linguist-generated
12
+ /.github/workflows/upgrade-main.yml linguist-generated
13
13
  /.gitignore linguist-generated
14
14
  /.husky/commit-msg linguist-generated
15
15
  /.husky/pre-commit linguist-generated
16
+ /.husky/pre-push linguist-generated
16
17
  /.mergify.yml linguist-generated
17
18
  /.npmignore linguist-generated
18
19
  /.prettierignore linguist-generated
@@ -21,6 +22,8 @@
21
22
  /.projen/deps.json linguist-generated
22
23
  /.projen/files.json linguist-generated
23
24
  /.projen/tasks.json linguist-generated
25
+ /.vscode/extensions.json linguist-generated
26
+ /CODE_OF_CONDUCT.md linguist-generated
24
27
  /LICENSE linguist-generated
25
28
  /package.json linguist-generated
26
29
  /tsconfig.dev.json linguist-generated
package/.husky/commit-msg CHANGED
@@ -1,3 +1,4 @@
1
1
  #!/bin/sh
2
2
  . "$(dirname "$0")/_/husky.sh"
3
+ npx --no -- cspell lint --show-suggestions "${1}"
3
4
  npx --no -- commitlint --edit "${1}"
package/.husky/pre-commit CHANGED
@@ -1,4 +1,3 @@
1
1
  #!/bin/sh
2
2
  . "$(dirname "$0")/_/husky.sh"
3
- npm run test:update
4
- npm run eslint
3
+ git diff --name-only --staged | npx cspell lint --dot --gitignore --show-suggestions --no-must-find-files --file-list stdin
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+ . "$(dirname "$0")/_/husky.sh"
3
+ npm run test
4
+ npm run eslint
@@ -0,0 +1,2 @@
1
+ Hubber
2
+ deps
package/.projenrc.ts CHANGED
@@ -1,35 +1,58 @@
1
- import { MountainPassTypeScriptProject } from "@mountainpass/projen-typescript-library";
2
- // import { typescript, JsonFile, TextFile } = require("projen");
1
+ import {
2
+ CodeOfConduct,
3
+ GitHubber,
4
+ NpmReleaser,
5
+ Organisational,
6
+ Recommended,
7
+ } from "@mountainpass/cool-bits-for-projen";
8
+ import { NpmAccess } from "projen/lib/javascript";
9
+ import { TypeScriptProject } from "projen/lib/typescript";
3
10
 
4
- const project = new MountainPassTypeScriptProject({
11
+ const gitHubber = new GitHubber({
5
12
  name: "problem-document",
6
- deps: [] /* Runtime dependencies of this module. */,
13
+ username: "mountain-pass",
14
+ });
15
+
16
+ const npmReleaser = new NpmReleaser(gitHubber, {
17
+ scope: "mountainpass",
18
+ access: NpmAccess.PUBLIC,
19
+ release: true,
20
+ });
21
+
22
+ const organisational = new Organisational({
23
+ organisation: {
24
+ name: "Mountain Pass",
25
+ email: "info@mountain-pass.com.au",
26
+ url: "https://mountain-pass.com.au",
27
+ },
28
+ });
29
+
30
+ const project = new TypeScriptProject({
31
+ ...gitHubber.nodeProjectOptions(),
32
+ ...organisational.nodeProjectOptions(),
33
+ ...npmReleaser.nodeProjectOptions(),
34
+ ...Recommended.defaultProjectOptions,
7
35
  description:
8
36
  "A basic RFC7807 Problem Details document with basic type checking and autocomplete" /* The description is just a string that helps people understand the purpose of the package. */,
37
+ deps: [] /* Runtime dependencies of this module. */,
9
38
  devDeps: [
10
39
  "http-status-codes",
11
40
  "@types/http-status-codes",
12
- "@mountainpass/projen-typescript-library",
13
- // "typedoc@^0.22.15"
14
- // "eslint-config-standard": "^16.0.2",
15
- // "eslint-plugin-chai-friendly": "^0.7.1",
16
- // "eslint-plugin-eslint-comments": "^3.2.0",
17
- // "eslint-plugin-import": "^2.22.1",
18
- // "eslint-plugin-istanbul": "^0.1.2",
19
- // "eslint-plugin-json": "^3.0.0",
20
- // "eslint-plugin-markdown": "^2.1.0",
21
- // "eslint-plugin-md": "^1.0.19",
22
- // "eslint-plugin-node": "^11.1.0",
23
- // "eslint-plugin-promise": "^5.1.0",
24
- // "eslint-plugin-security": "^1.4.0",
41
+ "@mountainpass/cool-bits-for-projen",
25
42
  ] /* Build dependencies for this module. */,
26
43
  keywords: ["problem-details", "rfc7807"],
27
- repositoryUrl: `https://github.com/mountain-pass/problem-document.git`,
28
- author: "Mountain Pass",
29
- authorAddress: "info@mountain-pass.com.au",
30
44
  defaultReleaseBranch: "main",
45
+ projenrcTs: true,
46
+ });
47
+
48
+ const recommended = new Recommended(project, {
49
+ cSpellOptions: { language: "en-GB", ignorePaths: ["docs"] },
31
50
  });
32
51
 
33
- project.addContributors("Tom Howard <tom@mountainpass.com.au>");
52
+ new CodeOfConduct(
53
+ project,
54
+ { contactMethod: "tom@mountain-pass.com.au" },
55
+ { cSpell: recommended.cSpell }
56
+ );
34
57
 
35
58
  project.synth();
@@ -0,0 +1,133 @@
1
+
2
+ # Contributor Covenant Code of Conduct
3
+
4
+ ## Our Pledge
5
+
6
+ We as members, contributors, and leaders pledge to make participation in our
7
+ community a harassment-free experience for everyone, regardless of age, body
8
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
9
+ identity and expression, level of experience, education, socio-economic status,
10
+ nationality, personal appearance, race, caste, color, religion, or sexual
11
+ identity and orientation.
12
+
13
+ We pledge to act and interact in ways that contribute to an open, welcoming,
14
+ diverse, inclusive, and healthy community.
15
+
16
+ ## Our Standards
17
+
18
+ Examples of behavior that contributes to a positive environment for our
19
+ community include:
20
+
21
+ * Demonstrating empathy and kindness toward other people
22
+ * Being respectful of differing opinions, viewpoints, and experiences
23
+ * Giving and gracefully accepting constructive feedback
24
+ * Accepting responsibility and apologizing to those affected by our mistakes,
25
+ and learning from the experience
26
+ * Focusing on what is best not just for us as individuals, but for the overall
27
+ community
28
+
29
+ Examples of unacceptable behavior include:
30
+
31
+ * The use of sexualized language or imagery, and sexual attention or advances of
32
+ any kind
33
+ * Trolling, insulting or derogatory comments, and personal or political attacks
34
+ * Public or private harassment
35
+ * Publishing others' private information, such as a physical or email address,
36
+ without their explicit permission
37
+ * Other conduct which could reasonably be considered inappropriate in a
38
+ professional setting
39
+
40
+ ## Enforcement Responsibilities
41
+
42
+ Community leaders are responsible for clarifying and enforcing our standards of
43
+ acceptable behavior and will take appropriate and fair corrective action in
44
+ response to any behavior that they deem inappropriate, threatening, offensive,
45
+ or harmful.
46
+
47
+ Community leaders have the right and responsibility to remove, edit, or reject
48
+ comments, commits, code, wiki edits, issues, and other contributions that are
49
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
50
+ decisions when appropriate.
51
+
52
+ ## Scope
53
+
54
+ This Code of Conduct applies within all community spaces, and also applies when
55
+ an individual is officially representing the community in public spaces.
56
+ Examples of representing our community include using an official e-mail address,
57
+ posting via an official social media account, or acting as an appointed
58
+ representative at an online or offline event.
59
+
60
+ ## Enforcement
61
+
62
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
63
+ reported to the community leaders responsible for enforcement at
64
+ tom@mountain-pass.com.au.
65
+ All complaints will be reviewed and investigated promptly and fairly.
66
+
67
+ All community leaders are obligated to respect the privacy and security of the
68
+ reporter of any incident.
69
+
70
+ ## Enforcement Guidelines
71
+
72
+ Community leaders will follow these Community Impact Guidelines in determining
73
+ the consequences for any action they deem in violation of this Code of Conduct:
74
+
75
+ ### 1. Correction
76
+
77
+ **Community Impact**: Use of inappropriate language or other behavior deemed
78
+ unprofessional or unwelcome in the community.
79
+
80
+ **Consequence**: A private, written warning from community leaders, providing
81
+ clarity around the nature of the violation and an explanation of why the
82
+ behavior was inappropriate. A public apology may be requested.
83
+
84
+ ### 2. Warning
85
+
86
+ **Community Impact**: A violation through a single incident or series of
87
+ actions.
88
+
89
+ **Consequence**: A warning with consequences for continued behavior. No
90
+ interaction with the people involved, including unsolicited interaction with
91
+ those enforcing the Code of Conduct, for a specified period of time. This
92
+ includes avoiding interactions in community spaces as well as external channels
93
+ like social media. Violating these terms may lead to a temporary or permanent
94
+ ban.
95
+
96
+ ### 3. Temporary Ban
97
+
98
+ **Community Impact**: A serious violation of community standards, including
99
+ sustained inappropriate behavior.
100
+
101
+ **Consequence**: A temporary ban from any sort of interaction or public
102
+ communication with the community for a specified period of time. No public or
103
+ private interaction with the people involved, including unsolicited interaction
104
+ with those enforcing the Code of Conduct, is allowed during this period.
105
+ Violating these terms may lead to a permanent ban.
106
+
107
+ ### 4. Permanent Ban
108
+
109
+ **Community Impact**: Demonstrating a pattern of violation of community
110
+ standards, including sustained inappropriate behavior, harassment of an
111
+ individual, or aggression toward or disparagement of classes of individuals.
112
+
113
+ **Consequence**: A permanent ban from any sort of public interaction within the
114
+ community.
115
+
116
+ ## Attribution
117
+
118
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
119
+ version 2.1, available at
120
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
121
+
122
+ Community Impact Guidelines were inspired by
123
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
124
+
125
+ For answers to common questions about this code of conduct, see the FAQ at
126
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
127
+ [https://www.contributor-covenant.org/translations][translations].
128
+
129
+ [homepage]: https://www.contributor-covenant.org
130
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
131
+ [Mozilla CoC]: https://github.com/mozilla/diversity
132
+ [FAQ]: https://www.contributor-covenant.org/faq
133
+ [translations]: https://www.contributor-covenant.org/translations
package/README.md CHANGED
@@ -1,13 +1,71 @@
1
1
  # problem-document
2
2
 
3
- A basic RFC7807 Problem Details document with basic type checking and autocomplete A basic RFC7807 Problem Details document with basic type checking and autocomplete
3
+ A basic [RFC7807](https://datatracker.ietf.org/doc/html/rfc7807) Problem Details document with basic type checking and autocomplete
4
4
 
5
+ [![License](https://img.shields.io/github/license/mountain-pass/problem-document?logo=apache)](https://github.com/mountain-pass/problem-document/blob/master/LICENSE) [![npm](https://img.shields.io/npm/v/@mountainpass/problem-document?logo=npm)](https://www.npmjs.com/package/@mountainpass/problem-document) [![npm downloads](https://img.shields.io/npm/dm/@mountainpass/problem-document?logo=npm)](https://www.npmjs.com/package/@mountainpass/problem-document)
6
+ [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fmountain-pass%2Fproblem-document.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fmountain-pass%2Fproblem-document?ref=badge_shield)
5
7
 
8
+ [![Build Status](https://img.shields.io/github/workflow/status/mountain-pass/problem-document/release?logo=github)](https://github.com/mountain-pass/problem-document/actions/workflows/release.yml) [![GitHub issues](https://img.shields.io/github/issues/mountain-pass/problem-document?logo=github)](https://github.com/mountain-pass/problem-document/issues) [![GitHub pull requests](https://img.shields.io/github/issues-pr/mountain-pass/problem-document?logo=github)](https://github.com/mountain-pass/problem-document/pulls)
6
9
 
10
+ <!-- [![Quality](https://img.shields.io/codacy/grade/940768d54f7545f7b42f89b26c23c751?logo=codacy)](https://www.codacy.com/gh/mountain-pass/problem-document/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=mountain-pass/problem-document&amp;utm_campaign=Badge_Grade) [![Coverage](https://img.shields.io/codacy/coverage/940768d54f7545f7b42f89b26c23c751?logo=codacy)](https://www.codacy.com/gh/mountain-pass/problem-document/dashboard?utm_source=github.com&utm_medium=referral&utm_content=mountain-pass/problem-document&utm_campaign=Badge_Coverage) -->
11
+
12
+ [![source code vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/mountain-pass/problem-document?label=source%20code%20vulnerabilities&logo=snyk)](https://snyk.io/test/github/mountain-pass/problem-document) [![npm package vulnerabilities](https://img.shields.io/snyk/vulnerabilities/npm/@mountainpass/problem-document@latest?label=npm%20package%20vulnerabilties&logo=snyk)](https://snyk.io/test/npm/@mountainpass/problem-document/latest)
13
+
14
+
15
+ [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](code_of_conduct.md)
16
+
17
+ ![I love badges](https://img.shields.io/badge/%E2%99%A5%20i%20love-%20badges-green?logo=heart)
18
+
19
+ <!-- [![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard) -->
20
+
21
+ ## Installation
22
+
23
+ ### npm
24
+
25
+ run the following command in your project
26
+
27
+ ```sh
28
+ npm install @mountainpass/problem-document
29
+ ```
30
+
31
+ ### yarn
32
+
33
+ run the following command in your project
34
+
35
+ ```sh
36
+ yarn add @mountainpass/problem-document
37
+ ```
38
+
39
+ ### projen
40
+
41
+ Add `@mountainpass/problem-document` to your `deps` in your `.projen.js` or `projen.ts`. e.g.
7
42
 
8
43
  ```js
9
- let foo = bar
10
- foo.forEach(efddd => {
11
- efddd = 24
12
- })
44
+ ///...
45
+ const project = new NodeProject({
46
+ //...
47
+ deps: [
48
+ //...
49
+ '@mountainpass/problem-document'
50
+ ]
51
+ });
52
+ ```
53
+
54
+ and run `npx projen`
55
+
56
+ ## Usage
57
+
58
+ ```js
59
+ import { ProblemDocument } from "@mountainpass/problem-document";
60
+
61
+ //...
62
+ const problemDocument = new ProblemDocument({
63
+ type: "https://example.com/probs/out-of-credit",
64
+ title: "You do not have enough credit.",
65
+ detail: "Your current balance is 30, but that costs 50.",
66
+ instance: "/account/12345/msgs/abc",
67
+ balance: 30,
68
+ accounts: ["/account/12345",
69
+ "/account/67890"]
70
+ });
13
71
  ```
package/package.json CHANGED
@@ -11,33 +11,36 @@
11
11
  "clobber": "npx projen clobber",
12
12
  "compile": "npx projen compile",
13
13
  "default": "npx projen default",
14
- "docgen": "npx projen docgen",
15
14
  "eject": "npx projen eject",
16
15
  "eslint": "npx projen eslint",
17
16
  "package": "npx projen package",
18
17
  "post-compile": "npx projen post-compile",
18
+ "post-upgrade": "npx projen post-upgrade",
19
19
  "pre-compile": "npx projen pre-compile",
20
20
  "prepare": "npx projen prepare",
21
21
  "release": "npx projen release",
22
+ "spellcheck": "npx projen spellcheck",
22
23
  "test": "npx projen test",
23
24
  "test:update": "npx projen test:update",
24
25
  "test:watch": "npx projen test:watch",
25
26
  "unbump": "npx projen unbump",
27
+ "upgrade": "npx projen upgrade",
26
28
  "watch": "npx projen watch",
27
29
  "projen": "npx projen"
28
30
  },
29
31
  "author": {
30
32
  "name": "Mountain Pass",
31
33
  "email": "info@mountain-pass.com.au",
34
+ "url": "https://mountain-pass.com.au",
32
35
  "organization": true
33
36
  },
34
37
  "devDependencies": {
35
- "@commitlint/cli": "^16.2.4",
36
- "@commitlint/config-conventional": "^16.2.4",
37
- "@mountainpass/projen-typescript-library": "^0.1.8",
38
+ "@commitlint/cli": "^17.0.2",
39
+ "@commitlint/config-conventional": "^17.0.2",
40
+ "@mountainpass/cool-bits-for-projen": "^0.1.8",
38
41
  "@types/http-status-codes": "^1.2.0",
39
42
  "@types/jest": "^27.4.1",
40
- "@types/node": "^12",
43
+ "@types/node": "^14",
41
44
  "@typescript-eslint/eslint-plugin": "^5",
42
45
  "@typescript-eslint/parser": "^5",
43
46
  "cspell": "*",
@@ -46,21 +49,20 @@
46
49
  "eslint-import-resolver-node": "^0.3.6",
47
50
  "eslint-import-resolver-typescript": "^2.7.1",
48
51
  "eslint-plugin-import": "^2.26.0",
49
- "eslint-plugin-jsdoc": "^39.2.9",
50
- "eslint-plugin-jsdoc-typescript": "^2.1.0",
52
+ "eslint-plugin-jsdoc": "^39.3.2",
51
53
  "eslint-plugin-prettier": "^4.0.0",
52
54
  "eslint-plugin-unicorn": "^42.0.0",
53
55
  "http-status-codes": "^2.2.0",
54
- "husky": "^7.0.4",
56
+ "husky": "^8.0.1",
55
57
  "jest": "^27",
56
58
  "jest-junit": "^13",
57
59
  "json-schema": "^0.4.0",
60
+ "npm-check-updates": "^12",
58
61
  "prettier": "^2.6.2",
59
- "projen": "^0.54.50",
62
+ "projen": "^0.56.35",
60
63
  "standard-version": "^9",
61
64
  "ts-jest": "^27",
62
65
  "ts-node": "^9",
63
- "typedoc": "^0.22.15",
64
66
  "typescript": "^4.6.3"
65
67
  },
66
68
  "keywords": [
@@ -73,19 +75,11 @@
73
75
  "publishConfig": {
74
76
  "access": "public"
75
77
  },
76
- "version": "0.0.39",
78
+ "version": "0.0.42",
77
79
  "bugs": {
78
80
  "url": "https://github.com/mountain-pass/problem-document/issues"
79
81
  },
80
82
  "jest": {
81
- "coverageThreshold": {
82
- "global": {
83
- "branches": 100,
84
- "functions": 100,
85
- "lines": 100,
86
- "statements": 100
87
- }
88
- },
89
83
  "testMatch": [
90
84
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
91
85
  "<rootDir>/(test|src)/**/?(*.)+(spec|test).ts?(x)"
@@ -127,7 +121,8 @@
127
121
  },
128
122
  "types": "lib/index.d.ts",
129
123
  "contributors": [
130
- "Tom Howard <tom@mountainpass.com.au>"
124
+ "Tom Howard <tom@windyroad.com.au>",
125
+ "dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>"
131
126
  ],
132
127
  "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
133
128
  }
package/cspell.json DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "language": "en-GB",
3
- "words": [
4
- "commitlint",
5
- "docgen",
6
- "projen",
7
- "projenrc",
8
- "unbump",
9
- "mountainpass",
10
- "dbaeumer",
11
- "outdir"
12
- ]
13
- }