-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 KB
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
{
"name": "ddd-es-node",
"version": "0.4.3",
"description": "DDD and Event Sourcing primitives for nodejs",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"engineStrict": true,
"engines": {
"node": ">= 6.9.0"
},
"scripts": {
"clean": "rm -rf coverage dist tmp",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"lint": "tslint -t stylish --exclude '**/*.js' --project 'tsconfig.json'",
"pretest": "npm run lint && eslint .",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run clean && npm run build && ./prepare.sh"
},
"dependencies": {
"eventstore": "1.12.3",
"reflect-metadata": "0.1.13",
"uuid": "8.3.0",
"walk": "2.3.9"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "26.0.9",
"@types/node": "12.12.6",
"@types/uuid": "8.0.1",
"babel-jest": "^29.5.0",
"eslint": "8.38.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
"tslint": "6.1.3",
"ts-jest": "29.1.0",
"tsutils": "3.21.0",
"typescript": "5.0.4"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "John Collier <john.collier4@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/github1/ddd-es-node"
}
}