-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
81 lines (77 loc) · 3.96 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
72
73
74
75
76
77
78
79
80
81
{
"name": "ngx-resource-mono",
"version": "10.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"core.lint": "ng lint @ngx-resource/core",
"core.test": "npm run core.lint && ng test @ngx-resource/core --watch=false --browsers=ChromeHeadless --codeCoverage=true",
"core.build": "ng build @ngx-resource/core --ts-config ./projects/ngx-resource/core/tsconfig.lib.prod.json",
"core.publish": "npm publish dist/ngx-resource/core --access public",
"core.full": "npm run core.test && npm run core.build && npm run core.publish",
"http.lint": "ng lint @ngx-resource/handler-ngx-http",
"http.test": "npm run http.lint && ng test @ngx-resource/handler-ngx-http --watch=false --browsers=ChromeHeadless --codeCoverage=true",
"http.build": "ng build @ngx-resource/handler-ngx-http --ts-config ./projects/ngx-resource/handler-ngx-http/tsconfig.lib.prod.json",
"http.publish": "npm publish dist/ngx-resource/handler-ngx-http --access public",
"http.full": "npm run http.test && npm run http.build && npm run http.publish",
"cordova.lint": "ng lint @ngx-resource/handler-cordova-advanced-http",
"cordova.test": "npm run cordova.lint && ng test @ngx-resource/handler-cordova-advanced-http --watch=false --browsers=ChromeHeadless --codeCoverage=true",
"cordova.build": "ng build @ngx-resource/handler-cordova-advanced-http --ts-config ./projects/ngx-resource/handler-cordova-advanced-http/tsconfig.lib.prod.json",
"cordova.publish": "npm publish dist/ngx-resource/handler-cordova-advanced-http --access public",
"cordova.full": "npm run cordova.test && npm run cordova.build && npm run cordova.publish",
"fetch.lint": "ng lint @ngx-resource/handler-fetch",
"fetch.test": "npm run fetch.lint && ng test @ngx-resource/handler-fetch --watch=false --browsers=ChromeHeadless --codeCoverage=true",
"fetch.build": "ng build @ngx-resource/handler-fetch --ts-config ./projects/ngx-resource/handler-fetch/tsconfig.lib.prod.json",
"fetch.publish": "npm publish dist/ngx-resource/handler-fetch --tag beta --access public",
"fetch.full": "npm run fetch.test && npm run fetch.build && npm run fetch.publish",
"ngrx.lint": "ng lint @ngx-resource/ngrx",
"ngrx.test": "npm run ngrx.lint && ng test @ngx-resource/ngrx --watch=false --browsers=ChromeHeadless --codeCoverage=true",
"ngrx.build": "ng build @ngx-resource/ngrx",
"ngrx.publish": "npm publish dist/ngx-resource/ngrx --tag beta --access public",
"ngrx.full": "npm run ngrx.test && npm run ngrx.build && npm run ngrx.publish",
"all.build": "npm run core.build && npm run http.build && npm run cordova.build",
"all.publish": "npm run core.publish && npm run http.publish && npm run cordova.publish"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.5",
"@angular/common": "^15.1.5",
"@angular/compiler": "^15.1.5",
"@angular/core": "^15.1.5",
"@angular/forms": "^15.1.5",
"@angular/platform-browser": "^15.1.5",
"@angular/platform-browser-dynamic": "^15.1.5",
"@angular/router": "^15.1.5",
"rxjs": "~7.5.0",
"tslib": "^2.5.0",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.6",
"@angular-devkit/core": "^15.1.6",
"@angular-devkit/schematics": "^15.1.6",
"@angular/cli": "^15.1.6",
"@angular/compiler-cli": "^15.1.5",
"@angular/language-service": "^15.1.5",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^15.1.2",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.9.5"
}
}