Merge branch 'feature/more-package-json' into 'develop'
📝 Add more info in `package.json` See merge request NatoBoram/public-gateway-cacher!5merge-requests/6/head
commit
a704e32a87
|
@ -0,0 +1,12 @@
|
||||||
|
# These are supported funding model platforms
|
||||||
|
|
||||||
|
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||||
|
patreon: NatoBoram # Replace with a single Patreon username
|
||||||
|
open_collective: # Replace with a single Open Collective username
|
||||||
|
ko_fi: # Replace with a single Ko-fi username
|
||||||
|
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||||
|
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||||
|
liberapay: # Replace with a single Liberapay username
|
||||||
|
issuehunt: # Replace with a single IssueHunt username
|
||||||
|
otechie: # Replace with a single Otechie username
|
||||||
|
custom: ["https://paypal.me/NatoBoram/5"] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
|
@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
* More information in the `package.json`.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
* Upgraded to Angular 12
|
* Upgraded to Angular 12
|
||||||
|
|
26
package.json
26
package.json
|
@ -1,6 +1,28 @@
|
||||||
{
|
{
|
||||||
"name": "public-gateway-cacher",
|
"name": "public-gateway-cacher",
|
||||||
"version": "2.1.1",
|
"version": "2.1.1",
|
||||||
|
"description": "Cache a specific hash on a bunch of public gateways.",
|
||||||
|
"keywords": [
|
||||||
|
"IPFS"
|
||||||
|
],
|
||||||
|
"homepage": "https://natoboram.gitlab.io/public-gateway-cacher",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://gitlab.com/NatoBoram/public-gateway-cacher/-/issues",
|
||||||
|
"email": "contact-project+natoboram-public-gateway-cacher-11685619-issue-@incoming.gitlab.com"
|
||||||
|
},
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
|
"author": {
|
||||||
|
"name": "Nato Boram",
|
||||||
|
"url": "https://gitlab.com/NatoBoram"
|
||||||
|
},
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "patreon",
|
||||||
|
"url": "https://www.patreon.com/NatoBoram"
|
||||||
|
},
|
||||||
|
"https://paypal.me/NatoBoram/5"
|
||||||
|
],
|
||||||
|
"repository": "gitlab:NatoBoram/public-gateway-cacher",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve --ssl",
|
"start": "ng serve --ssl",
|
||||||
|
@ -14,7 +36,6 @@
|
||||||
"publish:ipfs": "yarn run build:ipfs && ipfs add --recursive --chunker=buzhash --cid-version=1 dist/angular",
|
"publish:ipfs": "yarn run build:ipfs && ipfs add --recursive --chunker=buzhash --cid-version=1 dist/angular",
|
||||||
"postinstall": "ngcc"
|
"postinstall": "ngcc"
|
||||||
},
|
},
|
||||||
"private": false,
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "~12.2.16",
|
"@angular/animations": "~12.2.16",
|
||||||
"@angular/cdk": "~12.2.13",
|
"@angular/cdk": "~12.2.13",
|
||||||
|
@ -57,5 +78,6 @@
|
||||||
"tslint-origin-ordered-imports-rule": "^2.0.0",
|
"tslint-origin-ordered-imports-rule": "^2.0.0",
|
||||||
"tslint-rxjs-subject-restrictions-rule": "^1.0.4",
|
"tslint-rxjs-subject-restrictions-rule": "^1.0.4",
|
||||||
"typescript": "~4.3.5"
|
"typescript": "~4.3.5"
|
||||||
}
|
},
|
||||||
|
"private": true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue