@event-driven-io/emmett-expressjs 0.1.7

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.
@@ -0,0 +1,5 @@
1
+ type Nullo = {
2
+ test: 'string';
3
+ };
4
+
5
+ export type { Nullo };
@@ -0,0 +1,5 @@
1
+ type Nullo = {
2
+ test: 'string';
3
+ };
4
+
5
+ export type { Nullo };
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";//# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":""}
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@event-driven-io/emmett-expressjs",
3
+ "version": "0.1.7",
4
+ "description": "Emmett - Event Sourcing development made simple",
5
+ "scripts": {
6
+ "build": "tsup",
7
+ "build:ts": "tsc",
8
+ "build:ts:watch": "tsc --watch",
9
+ "lint": "npm run lint:eslint && npm run lint:prettier",
10
+ "lint:prettier": "prettier --check \"**/**/!(*.d).{ts,json,md}\"",
11
+ "lint:eslint": "eslint **/*.ts",
12
+ "fix": "run-s fix:eslint fix:prettier",
13
+ "fix:prettier": "prettier --write \"**/**/!(*.d).{ts,json,md}\"",
14
+ "fix:eslint": "eslint **/*.ts --fix",
15
+ "test": "run-s test:unit test:int test:e2e",
16
+ "test:unit": "jest unit --passWithNoTests --forceExit",
17
+ "test:int": "jest int --passWithNoTests --forceExit",
18
+ "test:e2e": "jest e2e --passWithNoTests --forceExit",
19
+ "test:watch": "jest test --passWithNoTests",
20
+ "test:unit:watch": "jest unit --passWithNoTests --forceExit --watch",
21
+ "test:int:watch": "jest int --passWithNoTests --forceExit --watch",
22
+ "test:e2e:watch": "jest e2e --passWithNoTests --forceExit --watch"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/event-driven-io/emmett.git"
27
+ },
28
+ "keywords": [
29
+ "Event Sourcing"
30
+ ],
31
+ "author": "Oskar Dudycz",
32
+ "bugs": {
33
+ "url": "https://github.com/event-driven-io/emmett/issues"
34
+ },
35
+ "homepage": "https://event-driven-io.github.io/emmett/",
36
+ "main": "./dist/index.js",
37
+ "module": "./dist/index.mjs",
38
+ "types": "./dist/index.d.ts",
39
+ "files": [
40
+ "dist"
41
+ ]
42
+ }