-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.94 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.94 KB
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
{
"name": "angular-email-builder-workspace",
"version": "1.1.3",
"scripts": {
"prepare": "husky",
"ng": "ng",
"start": "ng serve",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "ng build angular-email-builder && cp LICENSE dist/angular-email-builder/",
"watch": "ng build angular-email-builder --watch --configuration development",
"lint": "ng lint",
"test": "ng test angular-email-builder",
"test:ci": "ng test angular-email-builder",
"test:example": "ng test angular-email-builder-example",
"coverage": "ng test angular-email-builder --coverage",
"coverage:example": "ng test angular-email-builder-example --coverage",
"guard:main-branch": "test \"$(git rev-parse --abbrev-ref HEAD)\" = \"main\" || (echo 'Error: releases must be published from the main branch.' && exit 1)",
"prerelease": "git pull && yarn prebuild && yarn test:ci && yarn build",
"release": "yarn guard:main-branch && yarn prerelease && standard-version && git push --follow-tags --no-verify",
"release:alpha": "yarn prerelease && standard-version --prerelease alpha && git push --follow-tags --no-verify",
"release:beta": "yarn prerelease && standard-version --prerelease beta && git push --follow-tags --no-verify",
"release:unstable": "yarn prerelease && standard-version --prerelease unstable && git push --follow-tags --no-verify",
"publish:npm": "yarn guard:main-branch && yarn build && npm publish ./dist/angular-email-builder --access public"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"lint-staged": {
"*.{ts,html}": "eslint"
},
"packageManager": "yarn@4.12.0",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@angular/common": "^20.2.0",
"@angular/compiler": "^20.2.0",
"@angular/core": "^20.2.0",
"@angular/forms": "^20.2.0",
"@angular/platform-browser": "^20.2.0",
"@angular/router": "^20.2.0",
"@beefree.io/sdk": "^11.2.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.2.3",
"@analogjs/vitest-angular": "^2.2.3",
"@angular-eslint/builder": "20.2.0",
"@angular/build": "^20.2.1",
"@angular/cli": "^20.2.1",
"@angular/compiler-cli": "^20.2.0",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.33.0",
"@types/node": "^24.3.1",
"@vitest/coverage-istanbul": "^3.0.0",
"angular-eslint": "20.2.0",
"eslint": "^9.33.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^16.2.7",
"ng-packagr": "^20.2.0",
"rimraf": "^6.1.3",
"standard-version": "^9.5.0",
"typescript": "~5.9.2",
"typescript-eslint": "8.40.0",
"vite": "^7.0.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.0.0"
}
}