Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tusbar committed Aug 2, 2018
0 parents commit d9aaa3f
Show file tree
Hide file tree
Showing 5 changed files with 4,521 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules

reports
coverage

*.log
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# next-runtime-dotenv [![CircleCI](https://circleci.com/gh/bizon/mws-sdk.svg?style=svg)](https://circleci.com/gh/bizon/mws-sdk)

> SDK for MWS APIs
[![XO code style](https://badgen.net/badge/code%20style/XO/cyan)](https://github.com/xojs/xo)

## Miscellaneous

```
╚⊙ ⊙╝
╚═(███)═╝
╚═(███)═╝
╚═(███)═╝
╚═(███)═╝
╚═(███)═╝
╚═(███)═╝
```
45 changes: 45 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "mws-sdk",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": "[email protected]:bizon/mws-sdk.git",
"author": "Bertrand Marron <[email protected]>",
"dependencies": {},
"devDependencies": {
"jest": "^23.4.2",
"jest-junit": "^5.1.0",
"xo": "^0.21.1"
},
"jest": {
"reporters": [
"default",
[
"jest-junit",
{
"output": "reports/tests/junit.xml"
}
]
],
"collectCoverage": true,
"coverageReporters": [
"lcov",
"text-summary"
]
},
"xo": {
"semicolon": false,
"space": 2,
"overrides": [
{
"files": "__tests__/**/*.js",
"envs": [
"jest"
]
}
]
}
}
Loading

0 comments on commit d9aaa3f

Please sign in to comment.