UNPKG

7.49 kBJSONView Raw
1{
2 "title": "Update Contributors",
3 "name": "@bevry/update-contributors",
4 "version": "1.22.0",
5 "description": "Update the package.json author, contributors, and maintainers fields with the latest remote data",
6 "homepage": "https://github.com/bevry/update-contributors",
7 "license": "Artistic-2.0",
8 "keywords": [
9 "author",
10 "automation",
11 "bevry",
12 "contributor",
13 "contributors",
14 "es2021",
15 "export-default",
16 "maintain",
17 "maintainer",
18 "maintainers",
19 "maintenance",
20 "node",
21 "package.json",
22 "sponsors",
23 "typed",
24 "types",
25 "typescript"
26 ],
27 "badges": {
28 "list": [
29 "githubworkflow",
30 "npmversion",
31 "npmdownloads",
32 "---",
33 "githubsponsors",
34 "thanksdev",
35 "patreon",
36 "flattr",
37 "liberapay",
38 "buymeacoffee",
39 "opencollective",
40 "crypto",
41 "paypal",
42 "wishlist"
43 ],
44 "config": {
45 "githubWorkflow": "bevry",
46 "githubSponsorsUsername": "balupton",
47 "thanksdevGithubUsername": "balupton",
48 "buymeacoffeeUsername": "balupton",
49 "cryptoURL": "https://bevry.me/crypto",
50 "flattrUsername": "balupton",
51 "liberapayUsername": "bevry",
52 "opencollectiveUsername": "bevry",
53 "patreonUsername": "bevry",
54 "paypalURL": "https://bevry.me/paypal",
55 "wishlistURL": "https://bevry.me/wishlist",
56 "githubUsername": "bevry",
57 "githubRepository": "update-contributors",
58 "githubSlug": "bevry/update-contributors",
59 "npmPackageName": "@bevry/update-contributors"
60 }
61 },
62 "funding": "https://bevry.me/fund",
63 "author": "2020+ Benjamin Lupton <b@lupton.cc> (https://balupton.com)",
64 "maintainers": [
65 "Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
66 ],
67 "contributors": [
68 "Benjamin Lupton <b@lupton.cc> (https://github.com/balupton)"
69 ],
70 "bugs": {
71 "url": "https://github.com/bevry/update-contributors/issues"
72 },
73 "repository": {
74 "type": "git",
75 "url": "https://github.com/bevry/update-contributors.git"
76 },
77 "engines": {
78 "node": ">=10"
79 },
80 "editions": [
81 {
82 "description": "TypeScript source code with Import for modules",
83 "directory": "source",
84 "entry": "index.ts",
85 "tags": [
86 "source",
87 "typescript",
88 "import"
89 ],
90 "engines": false
91 },
92 {
93 "description": "TypeScript compiled against ES2021 for Node.js 10 || 12 || 14 || 16 || 18 || 19 with Require for modules",
94 "directory": "edition-es2021",
95 "entry": "index.js",
96 "tags": [
97 "compiled",
98 "javascript",
99 "es2021",
100 "require"
101 ],
102 "engines": {
103 "node": "10 || 12 || 14 || 16 || 18 || 19",
104 "browsers": false
105 }
106 },
107 {
108 "description": "TypeScript compiled against ES2021 for Node.js 12 || 14 || 16 || 18 || 19 with Import for modules",
109 "directory": "edition-es2021-esm",
110 "entry": "index.js",
111 "tags": [
112 "compiled",
113 "javascript",
114 "es2021",
115 "import"
116 ],
117 "engines": {
118 "node": "12 || 14 || 16 || 18 || 19",
119 "browsers": false
120 }
121 }
122 ],
123 "bin": "bin.cjs",
124 "types": "./compiled-types/",
125 "type": "module",
126 "main": "edition-es2021/index.js",
127 "exports": {
128 "node": {
129 "import": "./edition-es2021-esm/index.js",
130 "require": "./edition-es2021/index.js"
131 }
132 },
133 "dependencies": {
134 "@bevry/github-contributors": "^3.0.0",
135 "@bevry/json": "^1.4.0"
136 },
137 "devDependencies": {
138 "@types/node": "^18.15.7",
139 "@typescript-eslint/eslint-plugin": "^5.56.0",
140 "@typescript-eslint/parser": "^5.56.0",
141 "assert-helpers": "^8.4.0",
142 "eslint": "^8.36.0",
143 "eslint-config-bevry": "^3.27.0",
144 "eslint-config-prettier": "^8.8.0",
145 "eslint-plugin-prettier": "^4.2.1",
146 "filedirname": "^2.7.0",
147 "kava": "^5.15.0",
148 "make-deno-edition": "^1.3.0",
149 "prettier": "^2.8.7",
150 "projectz": "^2.23.0",
151 "surge": "^0.23.1",
152 "typedoc": "^0.23.28",
153 "typescript": "5.0.2",
154 "valid-directory": "^3.9.0"
155 },
156 "scripts": {
157 "our:bin": "node ./bin.cjs",
158 "our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
159 "our:compile": "npm run our:compile:deno && npm run our:compile:edition-es2021 && npm run our:compile:edition-es2021-esm && npm run our:compile:types",
160 "our:compile:deno": "make-deno-edition --attempt",
161 "our:compile:edition-es2021": "tsc --module commonjs --target ES2021 --outDir ./edition-es2021 --project tsconfig.json && ( test ! -d edition-es2021/source || ( mv edition-es2021/source edition-temp && rm -Rf edition-es2021 && mv edition-temp edition-es2021 ) ) && echo '{\"type\": \"commonjs\"}' > edition-es2021/package.json",
162 "our:compile:edition-es2021-esm": "tsc --module ESNext --target ES2021 --outDir ./edition-es2021-esm --project tsconfig.json && ( test ! -d edition-es2021-esm/source || ( mv edition-es2021-esm/source edition-temp && rm -Rf edition-es2021-esm && mv edition-temp edition-es2021-esm ) ) && echo '{\"type\": \"module\"}' > edition-es2021-esm/package.json",
163 "our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )",
164 "our:deploy": "echo no need for this project",
165 "our:meta": "npm run our:meta:directory && npm run our:meta:docs && npm run our:meta:projectz",
166 "our:meta:directory": "npm run our:bin",
167 "our:meta:docs": "npm run our:meta:docs:typedoc",
168 "our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --exclude '**/+(*test*|node_modules)' --excludeExternals --out ./docs ./source",
169 "our:meta:projectz": "projectz compile",
170 "our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push",
171 "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
172 "our:release:check-dirty": "git diff --exit-code",
173 "our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
174 "our:release:push": "git push origin && git push origin --tags",
175 "our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"",
176 "our:setup": "npm run our:setup:install",
177 "our:setup:install": "npm install",
178 "our:test": "npm run our:verify && npm test",
179 "our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier",
180 "our:verify:directory": "valid-directory",
181 "our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source",
182 "our:verify:prettier": "prettier --write .",
183 "test": "node ./edition-es2021/test.js"
184 },
185 "eslintConfig": {
186 "extends": [
187 "bevry"
188 ]
189 },
190 "prettier": {
191 "semi": false,
192 "singleQuote": true
193 },
194 "boundation": {
195 "githubActionTestEnv": {
196 "GITHUB_TOKEN": "${{ secrets.GITHUB_TOKEN }}"
197 }
198 }
199}
\No newline at end of file