This repository was archived by the owner on Mar 7, 2023. It is now read-only.
forked from danilokorber/ngx-flags
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.43 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
83
84
85
86
87
88
89
{
"name": "nxt-flags",
"version": "1.0.1",
"description": "Angular component to show country flags.",
"author": "Danilo Körber",
"repository": {
"type": "git",
"url": "https://github.com/Liquid-JS/nxt-flags.git"
},
"bugs": {
"url": "https://github.com/Liquid-JS/nxt-flags/issues"
},
"scripts": {
"start": "ng serve --disable-host-check",
"build": "ng build --configuration production nxt-flags",
"build:demo": "ng build --configuration production --base-href https://liquid-js.github.io/nxt-flags/ demo",
"analyze": "yarn build:demo --stats-json && webpack-bundle-analyzer dist/demo/stats.json",
"test": "ng test --code-coverage --source-map false --watch true",
"lint": "ng lint --fix",
"pages": "cross-env NODE_ENV=production yarn build:demo && cross-env NODE_ENV=production yarn docs && cross-env NODE_ENV=production ngh --dir dist/demo",
"docs": "typedoc --tsconfig ./projects/nxt-flags/tsconfig.lib.json --entryPoints ./projects/nxt-flags/src/public-api.ts --out ./dist/demo/docs",
"optimize-icons": "svgo -f ./projects/nxt-flags/assets/flags -p 5"
},
"homepage": "https://github.com/Liquid-JS/nxt-flags",
"keywords": [
"angular",
"javascript",
"typescript",
"flags"
],
"license": "MIT",
"dependencies": {
"@angular/common": "<15.0.0",
"@angular/compiler": "<15.0.0",
"@angular/core": "<15.0.0",
"@angular/forms": "<15.0.0",
"@angular/platform-browser": "<15.0.0",
"@angular/platform-browser-dynamic": "<15.0.0",
"@angular/router": "<15.0.0",
"@babel/core": "^7.20.5",
"@babel/generator": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"bootstrap": "^5.2.3",
"core-js": "^3.26.1",
"diacritics": "^1.3.0",
"i18n-iso-countries": "^7.5.0",
"rxjs": "^7.6.0",
"tslib": "^2.4.1",
"zone.js": "^0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "<15.0.0",
"@angular-eslint/builder": "<15.0.0",
"@angular-eslint/eslint-plugin": "<15.0.0",
"@angular-eslint/eslint-plugin-template": "<15.0.0",
"@angular-eslint/schematics": "<15.0.0",
"@angular-eslint/template-parser": "<15.0.0",
"@angular/cli": "<15.0.0",
"@angular/compiler-cli": "<15.0.0",
"@angular/language-service": "<15.0.0",
"@types/diacritics": "^1.3.1",
"@types/jasmine": "^4.3.1",
"@types/jasminewd2": "^2.0.10",
"@types/node": "<19.0.0",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"angular-cli-ghpages": "^1.0.5",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jasmine-core": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "<15.0.0",
"protractor": "^7.0.0",
"puppeteer": "^19.3.0",
"svgo": "^3.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": ">=4.8 <4.9",
"webpack-bundle-analyzer": "^4.7.0"
}
}