Skip to content

Commit

Permalink
Create package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Zibri authored Jul 15, 2019
1 parent 520e1b8 commit 95f978d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "{{ project-name }}",
"version": "1.0.0",
"description": "A CORS proxy running in a worker",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'"
},
"author": "{{ authors }}",
"license": "MIT",
"devDependencies": {
"husky": "^2.1.0",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run format",
"pre-push": "npm run format"
}
}
}

0 comments on commit 95f978d

Please sign in to comment.