chore: Add backend package
This commit is contained in:
11
packages/backend/README.md
Normal file
11
packages/backend/README.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# `backend`
|
||||||
|
|
||||||
|
> TODO: description
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```
|
||||||
|
const backend = require('backend');
|
||||||
|
|
||||||
|
// TODO: DEMONSTRATE API
|
||||||
|
```
|
7
packages/backend/__tests__/backend.test.js
Normal file
7
packages/backend/__tests__/backend.test.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const backend = require('..');
|
||||||
|
|
||||||
|
describe('backend', () => {
|
||||||
|
it('needs tests');
|
||||||
|
});
|
7
packages/backend/lib/backend.js
Normal file
7
packages/backend/lib/backend.js
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = backend;
|
||||||
|
|
||||||
|
function backend() {
|
||||||
|
// TODO
|
||||||
|
}
|
30
packages/backend/package.json
Normal file
30
packages/backend/package.json
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "@automatisch/backend",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "> TODO: description",
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "automatisch contributors",
|
||||||
|
"url": "https://github.com/automatisch/automatisch/graphs/contributors"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"homepage": "https://github.com/automatisch/automatisch#readme",
|
||||||
|
"main": "lib/backend.js",
|
||||||
|
"directories": {
|
||||||
|
"lib": "lib",
|
||||||
|
"test": "__tests__"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"lib"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/automatisch/automatisch.git"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/automatisch/automatisch/issues"
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user