Added package.json

This commit is contained in:
Héctor Molinero Fernández 2017-11-20 21:39:08 +01:00
commit cf0896fab6
3 changed files with 49 additions and 2 deletions

3
.gitignore vendored
View file

@ -1,3 +1,6 @@
node_modules/
npm-debug.log*
.firebaserc
firebase-debug.log

View file

@ -17,8 +17,8 @@ build:
deploy:
stage: deploy
script:
- npm install firebase-tools
- PATH="node_modules/firebase-tools/bin:${PATH}"
- PATH="$(npm bin):${PATH}"
- npm install
- firebase use --token "${FIREBASE_TOKEN}" "${FIREBASE_PROJECT}"
- firebase deploy --token "${FIREBASE_TOKEN}" --message "Pipeline ${CI_PIPELINE_ID}, job ${CI_JOB_ID}"
cache:

44
package.json Normal file
View file

@ -0,0 +1,44 @@
{
"name": "hblock",
"version": "1.0.0",
"description": "Improve your security and privacy by blocking ads, tracking and malware domains",
"keywords": [
"ad-block",
"ad-blocker",
"ads",
"advertisements",
"domains",
"filter",
"filter-lists",
"filterlist",
"hosts",
"hostsfile",
"malware",
"privacy",
"security",
"shell",
"trackers",
"tracking",
"unified-hosts"
],
"author": "Héctor Molinero Fernández <hector@molinero.xyz>",
"license": "MIT",
"homepage": "https://hblock.molinero.xyz",
"repository": {
"type": "git",
"url": "https://github.com/zant95/hblock.git"
},
"bugs": {
"url": "https://github.com/zant95/hblock/issues"
},
"bin": {
"hblock": "./hblock"
},
"files": [
"/hblock"
],
"preferGlobal": true,
"devDependencies": {
"firebase-tools": "^3.0.0"
}
}