forked from mateodelnorte/sourced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "sourced",
"version": "0.0.0-development",
"description": "Tiny framework for building models with the event sourcing pattern (events and snapshots). Now with Typescript and browser support.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"docs": "mocha -R doc -t 5000 > docs/docs.html",
"lint": "eslint src __tests__",
"lint:fix": "eslint --fix src __tests__",
"test": "DEBUG=sourced jest --config jest.json --coverage --verbose",
"test:watch": "DEBUG=sourced jest --config jest.json --watch --coverage --verbose",
"semantic-release": "semantic-release",
"install-husky": "husky install"
},
"author": {
"name": "[email protected]"
},
"contributors": [
"stephanknull"
],
"repository": {
"type": "git",
"url": "https://github.com/CloudNativeEntrepreneur/sourced.git"
},
"keywords": [
"sourced",
"event-sourcing",
"eventsourcing",
"cqrs",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@types/debug": "4.1.7",
"@types/jest": "27.0.3",
"@types/lodash.clonedeep": "4.5.7",
"@types/node": "17.0.23",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.23.0",
"codecov": "3.8.3",
"eslint": "8.36.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"semantic-release": "19.0.5",
"ts-jest": "27.1.5",
"typescript": "4.6.4"
},
"dependencies": {
"debug": "4.3.4",
"eventemitter3": "4.0.7",
"lodash.clonedeep": "4.5.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}