-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.64 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": "@ngry/cqrs",
"description": "Lightweight CQRS module for Angular",
"version": "0.0.0-development",
"keywords": [
"angular",
"library",
"cqrs",
"eventbus",
"commandbus",
"querybus",
"event",
"command",
"query",
"saga"
],
"repository": {
"type": "git",
"url": "https://github.com/ngry-project/cqrs"
},
"maintainers": [
{
"name": "Alex Chugaev",
"url": "https://github.com/avchugaev"
}
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --prod",
"test": "ng test",
"test:coverage": "ng test --coverage",
"test:coverage:watch": "ng test --coverage --watch",
"test:watch": "ng test --watch",
"lint": "ng lint"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@angular-builders/jest": "^11.0.0",
"@angular-devkit/build-angular": "^12.2.7",
"@angular-devkit/build-ng-packagr": "~0.1000.8",
"@angular/cli": "~12.2.7",
"@angular/common": "~12.2.7",
"@angular/compiler": "~12.2.7",
"@angular/compiler-cli": "~12.2.7",
"@angular/core": "~12.2.7",
"@angular/platform-browser": "~12.2.7",
"@angular/platform-browser-dynamic": "~12.2.7",
"@ngry/rx": "^12.1.0",
"@types/jest": "^26.0.20",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jest": "^26.6.3",
"ng-packagr": "^12.2.2",
"rxjs": "~6.6.3",
"ts-node": "~8.3.0",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5",
"zone.js": "~0.11.4"
},
"peerDependencies": {
"rxjs": "~6.6.3"
},
"publish": {
"pkgRoot": "dist"
}
}