Skip to content

Commit

Permalink
Merge pull request #4 from jsreport/payments
Browse files Browse the repository at this point in the history
Payments
  • Loading branch information
pofider authored Nov 14, 2019
2 parents 728e85e + 9ca5e20 commit a749903
Show file tree
Hide file tree
Showing 97 changed files with 15,840 additions and 4,195 deletions.
17 changes: 17 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": [
"standard",
"standard-jsx"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"node": true,
"browser": true,
"jsx": true
}
}
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ node_modules
key.txt

views/learn/docs/*.*
.env
.cache
dist

test/body.txt
test/signature.txt
1 change: 1 addition & 0 deletions .npmrc.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
email = [email protected]
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_js:
- '8'
services:
- docker
- mongodb
deploy:
provider: script
skip_cleanup: true
Expand Down
15 changes: 13 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,21 @@
"type": "node",
"request": "launch",
"env": {
"NODE_ENV": "development"
"NODE_ENV": "development"
},
"name": "Launch Program",
"program": "${workspaceRoot}\\app.js"
"program": "${workspaceRoot}\\server.js"
},
{
"name": "Run mocha",
"type": "node",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"${workspaceFolder}/test/*/*.ts",
"--timeout=0",
"-r=ts-node/register"
],
"request": "launch"
}
]
}
140 changes: 0 additions & 140 deletions app.js

This file was deleted.

Loading

0 comments on commit a749903

Please sign in to comment.