-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
85 lines (85 loc) · 2.53 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
82
83
84
85
{
"name": "ngx-avatars",
"version": "1.0.0",
"homepage": "https://github.com/Heatmanofurioso/ngx-avatars",
"description": "README.md",
"readme": "README.md",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "Github",
"url": "https://github.com/Heatmanofurioso/ngx-avatars"
},
"author": {
"name": "Heatmanofurioso",
"url": "https://github.com/Heatmanofurioso",
"email": "ofuriosoheatman@gmail.com"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production",
"build-lib": "ng build ngx-avatars --configuration production",
"postbuild": "node scripts/copy-artifacts.js",
"postinstall": "husky install",
"deploy": "cd dist/ngx-avatars && npm publish",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": false,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"rxjs": "^7.8.1",
"ts-md5": "^1.3.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-builders/jest": "^17.0.3",
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@testing-library/jest-dom": "6.4.5",
"@types/jest": "29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^9.4.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.2.7",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "^9.0.11",
"jasmine-spec-reporter": "^7.0.0",
"jest": "29.7.0",
"jest-preset-angular": "^14.1.0",
"ng-packagr": "^18.0.0",
"protractor": "~7.0.0",
"ts-jest": "29.1.4",
"ts-node": "~10.9.2",
"typescript": "5.4.5"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/",
"<rootDir>/src/test.ts"
]
}
}