-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "ngx-collection",
"version": "4.3.1",
"license": "MIT",
"author": {
"name": "Evgeniy OZ",
"email": "[email protected]",
"url": "https://jamm.dev"
},
"repository": {
"url": "git+https://github.com/e-oz/ngx-collection.git"
},
"keywords": [
"angular",
"collections"
],
"scripts": {
"ng": "ng",
"build": "ng build",
"test": "npx jest",
"pub": "npm run pre && npm publish ./dist/ngx-collection",
"pre": "npm i && ng build && cp ./README.md ./dist/ngx-collection/README.md && npx jest --clearCache && npm run test && npm publish ./dist/ngx-collection --dry-run",
"reinst": "rm -rf node_modules && rm -f package-lock.json && rm -rf dist && npm i && npm run pre"
},
"private": false,
"dependencies": {
"@angular/core": "^17.3.12",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.11",
"@angular-devkit/core": "^17.3.11",
"@angular-devkit/schematics": "^17.3.11",
"@angular/cli": "^17.3.11",
"@angular/common": "^17.3.12",
"@angular/compiler": "^17.3.12",
"@angular/compiler-cli": "^17.3.12",
"@angular/platform-browser": "^17.3.12",
"@angular/platform-browser-dynamic": "^17.3.12",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-preset-angular": "^14.2.4",
"ng-packagr": "^17.3.0",
"ts-node": "^10.9.2",
"typescript": "~5.4.5",
"zone.js": "~0.15.0"
},
"overrides": {
"rxjs": "$rxjs",
"typescript": "$typescript"
},
"sideEffects": false
}