-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "angular-awesome",
"version": "3.10.0",
"private": false,
"description": "Angular 20+ wrappers for the Web Awesome 3.10.x web components framework",
"keywords": [
"angular",
"web-awesome",
"web-components",
"wrapper",
"components",
"directives"
],
"author": "Marc Magon <marc.magon@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/GedMarc/angular-awesome.git"
},
"homepage": "https://gedmarc.github.io/angular-awesome",
"scripts": {
"build": "ng build",
"lint": "ng lint",
"test": "ng test",
"test:headless": "ng test --watch=false --browsers=ChromeHeadless",
"docs:generate": "node docs/generate-docs.js",
"docs:build": "npm run docs:generate && ng build",
"docs:deploy": "npm run docs:build && npx gh-pages -d dist/angular-awesome --add"
},
"main": "dist/angular-awesome/fesm2022/angular-awesome.js",
"module": "dist/angular-awesome/fesm2022/angular-awesome.js",
"es2022": "dist/angular-awesome/fesm2022/angular-awesome.js",
"typings": "dist/angular-awesome/index.d.ts",
"peerDependencies": {
"@angular/common": ">=20.0.0",
"@angular/core": ">=20.0.0",
"@angular/forms": ">=20.0.0"
},
"devDependencies": {
"@angular/build": "^20.3.0",
"@angular/cli": "^20.3.0",
"@angular/common": "^20.3.0",
"@angular/compiler-cli": "^20.3.0",
"@angular/core": "^20.3.0",
"@angular/forms": "^20.3.0",
"@angular/platform-browser": "^20.3.0",
"@angular/platform-browser-dynamic": "^20.3.0",
"@eslint/js": "^9.39.0",
"@types/jasmine": "~5.1.0",
"angular-eslint": "^20.7.0",
"cross-env": "^10.1.0",
"eslint": "^9.0.0",
"gh-pages": "^6.1.1",
"jasmine-core": "~6.2.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"marked": "^9.1.6",
"ng-packagr": "^20.3.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "8.59.3",
"zone.js": "~0.15.0"
}
}