@bobfrankston/npmglobalize 1.0.12 → 1.0.18

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/token.env DELETED
@@ -1,10 +0,0 @@
1
- # NPM Authentication Token
2
- # Copy this file to token.env and replace with your actual token
3
- # Get token from: https://www.npmjs.com/settings/[username]/tokens
4
- #
5
- # Generate a Granular Access Token with:
6
- # - Permissions: Read and write
7
- # - Bypass 2FA requirement: Enabled
8
- #
9
- NPM_TOKEN=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
10
-
package/token.env.example DELETED
@@ -1,9 +0,0 @@
1
- # NPM Authentication Token
2
- # Copy this file to token.env and replace with your actual token
3
- # Get token from: https://www.npmjs.com/settings/[username]/tokens
4
- #
5
- # Generate a Granular Access Token with:
6
- # - Permissions: Read and write
7
- # - Bypass 2FA requirement: Enabled
8
- #
9
- NPM_TOKEN=npm_YOUR_TOKEN_HERE
package/tsconfig.json DELETED
@@ -1,28 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "esnext",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "allowSyntheticDefaultImports": true,
7
- "esModuleInterop": true,
8
- "allowJs": true,
9
- "strict": true,
10
- "forceConsistentCasingInFileNames": true,
11
- "skipLibCheck": true,
12
- "declaration": true,
13
- "declarationMap": true,
14
- "sourceMap": true,
15
- "strictNullChecks": false,
16
- "noImplicitAny": true,
17
- "noImplicitReturns": false,
18
- "noImplicitThis": true,
19
- "newLine": "lf"
20
- },
21
- "exclude": [
22
- "node_modules",
23
- "cruft",
24
- ".git",
25
- "tests",
26
- "prev"
27
- ]
28
- }