-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "typed-bus",
"version": "1.1.1",
"description": "Typed bus for internal or external communications, handy for Event Sourcing",
"main": "index.js",
"author": "Konstanin Knyazev <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sckv/typed-bus.git"
},
"bugs": {
"url": "https://github.com/sckv/typed-bus/issues"
},
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"keywords": [
"nodejs",
"event-sourcing",
"bus",
"type-safe",
"io-ts"
],
"scripts": {
"build": "rm -rf ./lib && tsc -p tsconfig.build.json",
"build:dev": "rm -rf ./dev-lib && tsc",
"docs": "rm -rf ./docs && typedoc --plugin typedoc-plugin-markdown --out ./docs --name \"Typed Bus\" --readme ./README.md src/index.ts",
"test": "jest --runInBand --coverage",
"test:watch": "jest --runInBand --watch",
"lint": "eslint ./src",
"release": "semantic-release -e ./.releaserc.json",
"lint:fix": "eslint ./src --fix",
"prettify": "prettier --write \"./src/**/*.{ts,tsx}\""
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"axios": "^0.26.0",
"barehttp": "^0.5.0",
"code-concierge": "^1.1.0",
"typedoc": "^0.22.13",
"typedoc-plugin-markdown": "^3.11.14"
},
"dependencies": {
"fp-ts": "^2.11.8",
"hyperid": "^3.0.0",
"io-ts": "^2.2.16",
"lodash": "^4.17.21",
"lru-cache": "^7.13.1",
"reflect-metadata": "^0.1.13"
}
}