-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.97 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": "countries-map-dev",
"version": "4.10.0",
"description": "Builder and demo runner for countries-map",
"license": "MIT",
"author": "Jago MF <[email protected]>",
"repository": "github:jagomf/countries-map",
"homepage": "https://github.com/jagomf/countries-map",
"scripts": {
"demo": "npm run minify && ng serve",
"build:demo": "npm run minify && ng build countries-map-dev",
"build:prod": "npm run minify && ng build countries-map --configuration production && npm run dist:copy",
"start": "npm run demo",
"minify:pre": "cp projects/lib/assets/world-map.svg projects/lib/src/lib/base-map.component.svg",
"minify": "npm run minify:pre && svgo --config=./.svgo.yml ./projects/lib/src/lib/base-map.component.svg",
"dist": "npm run build:prod",
"dist:publish": "npm run dist && cd dist/countries-map && npm publish",
"dist:copy": "cp ./{README.md,CHANGELOG.md,LICENSE} dist/countries-map/",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/common": "^17.3.6",
"@angular/compiler": "^17.3.6",
"@angular/core": "^17.3.6",
"@angular/platform-browser": "^17.3.6",
"@angular/platform-browser-dynamic": "^17.3.6",
"@jagomf/countrieslist": "^3.0.1",
"chroma-js": "^2.1.0",
"rxjs": "~6.6.0",
"tslib": "^2.6.2",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.6",
"@angular-eslint/builder": "17.4.1",
"@angular-eslint/eslint-plugin": "17.4.1",
"@angular-eslint/eslint-plugin-template": "17.4.1",
"@angular-eslint/schematics": "17.4.1",
"@angular-eslint/template-parser": "17.4.1",
"@angular/cli": "^17.3.6",
"@angular/compiler-cli": "^17.3.6",
"@types/chroma-js": "^2.1.2",
"@types/node": "^12.19.9",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"eslint": "^8.57.0",
"ng-packagr": "^17.3.0",
"svgo": "^1.3.2",
"ts-node": "~8.3.0",
"typescript": "~5.4.5"
}
}