-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "ngx-crud",
"description": "CRUD services in Angular with effortless aborting, caching and observing",
"version": "17.0.0",
"homepage": "https://ngx-crud.com",
"license": "MIT",
"type": "module",
"keywords":
[
"angular",
"http",
"crud",
"aborting",
"caching",
"observing"
],
"author":
{
"name": "Henry Ruhs",
"url": "https://henryruhs.com"
},
"bugs":
{
"url": "https://github.com/henryruhs/ngx-crud/issues"
},
"repository":
{
"type": "git",
"url": "https://github.com/henryruhs/ngx-crud.git"
},
"peerDependencies":
{
"@angular/common": "^17",
"@angular/core": "^17",
"rxjs": "^7",
"rxjs-collection": "^2"
},
"devDependencies":
{
"@angular/common": "17.0.0",
"@angular/compiler": "17.0.0",
"@angular/compiler-cli": "17.0.0",
"@angular/core": "17.0.0",
"@angular/platform-browser": "17.0.0",
"@angular/platform-browser-dynamic": "17.0.0",
"@isnotdefined/eslint-config": "9.8.0",
"@types/chai": "4.3.10",
"@types/mocha": "10.0.4",
"chai": "4.3.10",
"core-js": "3.33.2",
"eslint": "8.53.0",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"mocha": "10.2.0",
"ng-packagr": "17.0.0",
"rxjs": "7.8.1",
"rxjs-collection": "2.1.2",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"zone.js": "0.14.2"
},
"scripts":
{
"build": "ng-packagr --project=ng-package.json --config=tsconfig.build.json",
"prepublishOnly": "exit 1",
"lint": "eslint src tests --ext=.ts",
"fix": "npm run lint -- --fix",
"test": "mocha"
}
}