mirror of
https://github.com/dilllxd/gitfolio.git
synced 2024-08-14 22:28:09 +00:00
Multiple Additions
Add meta tag for Pinterest verification Install Snyk and add badge to README
This commit is contained in:
parent
22aea37d3b
commit
80709a6a9e
6 changed files with 2321 additions and 72 deletions
4
.snyk
Normal file
4
.snyk
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
|
||||
version: v1.13.5
|
||||
ignore: {}
|
||||
patch: {}
|
|
@ -12,7 +12,7 @@ before_install:
|
|||
before_script:
|
||||
- npm install -g
|
||||
script:
|
||||
- npm run test
|
||||
- npm run build
|
||||
- npm run prettier
|
||||
after_success:
|
||||
- lhci autorun --upload.target=temporary-public-storage --staticDistDir=/home/travis/build/k4ustu3h/gitfolio/dist
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
[![Build Status](https://img.shields.io/travis/k4ustu3h/gitfolio?style=for-the-badge)](https://travis-ci.org/k4ustu3h/gitfolio)
|
||||
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=for-the-badge)](https://github.com/prettier/prettier)
|
||||
[![Dependency Status](https://img.shields.io/david/k4ustu3h/gitfolio?style=for-the-badge)](https://david-dm.org/k4ustu3h/gitfolio)
|
||||
[![devDependencies Status](https://img.shields.io/david/dev/k4ustu3h/gitfolio?style=for-the-badge)](https://david-dm.org/k4ustu3h/gitfolio?type=dev)
|
||||
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=for-the-badge)](https://github.com/prettier/prettier)
|
||||
![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/k4ustu3h/gitfolio?style=for-the-badge)
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<meta name="p:domain_verify" content="888d983503e053f3db87d36354df7eef" />
|
||||
<title></title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
|
|
2372
package-lock.json
generated
2372
package-lock.json
generated
File diff suppressed because it is too large
Load diff
11
package.json
11
package.json
|
@ -5,10 +5,13 @@
|
|||
"main": "build.js",
|
||||
"bin": "bin/gitfolio.js",
|
||||
"scripts": {
|
||||
"build": "OUT_DIR='./dist' node bin/gitfolio.js build k4ustu3h --fork --theme dark --sort updated --twitter k4ustu3h_ --dribbble k4ustu3h --email k4ustu3h@gmail.com --codepen k4ustu3h --dev k4ustu3h --instagram k4ustu3h --telegram k4ustu3h --reddit kaustubhladiya --keybase k4ustu3h --facebook k4ustu3h",
|
||||
"cli": "OUT_DIR='./dist' node bin/gitfolio.js",
|
||||
"clean": "rm -rf ./dist/*",
|
||||
"prettier": "prettier --write \"./**/*.{js,jsx,json,html,css,md}\"",
|
||||
"test": "OUT_DIR='./dist' node bin/gitfolio.js build k4ustu3h --fork --theme dark --sort updated --twitter k4ustu3h_ --dribbble k4ustu3h --email k4ustu3h@gmail.com --codepen k4ustu3h --dev k4ustu3h --instagram k4ustu3h --telegram k4ustu3h --reddit kaustubhladiya --keybase k4ustu3h --facebook k4ustu3h"
|
||||
"snyk-protect": "snyk protect",
|
||||
"prepare": "npm run snyk-protect",
|
||||
"test": "snyk test"
|
||||
},
|
||||
"author": {
|
||||
"name": "@imfunniee and community",
|
||||
|
@ -40,10 +43,12 @@
|
|||
"got": "^10.2.2",
|
||||
"handlebars": "^4.1.2",
|
||||
"jsdom": "^15.1.0",
|
||||
"ncp": "^2.0.0"
|
||||
"ncp": "^2.0.0",
|
||||
"snyk": "^1.279.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^6.8.0",
|
||||
"prettier": "1.19.1"
|
||||
}
|
||||
},
|
||||
"snyk": true
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue