@uscreen.de/create-fastify-app 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ /node_modules
2
+ .DS_Store
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uscreen.de/create-fastify-app",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "cli to create a new @uscreen.de/fastify-app",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -0,0 +1,4 @@
1
+ # @see https://direnv.net/ and https://github.com/direnv/direnv/wiki/Node for docs
2
+ set -e
3
+ use node
4
+ layout node
@@ -0,0 +1,12 @@
1
+ module.exports = {
2
+ root: true,
3
+ env: {
4
+ node: true
5
+ },
6
+ extends: ['standard', 'plugin:prettier/recommended'],
7
+ rules: {
8
+ 'generator-star-spacing': 'off',
9
+ 'space-before-function-paren': 'off',
10
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
11
+ }
12
+ }
@@ -0,0 +1,5 @@
1
+ node_modules
2
+ /.env
3
+ /.nyc_output
4
+ /coverage
5
+ .DS_Store
@@ -0,0 +1 @@
1
+ 10
@@ -0,0 +1,4 @@
1
+ semi: false
2
+ singleQuote: true
3
+ trailingComma: none
4
+ bracketSpacing: true
@@ -0,0 +1,3 @@
1
+ {
2
+ "reporter": "spec"
3
+ }