2016-06-06 14:50:30 +02:00
|
|
|
{
|
2017-04-15 09:38:23 +02:00
|
|
|
"name": "convertorizr",
|
2024-01-22 02:37:28 +01:00
|
|
|
"version": "2.0.0-dev.1",
|
2017-04-15 09:38:23 +02:00
|
|
|
"description": "Decode or encode base64, punycode, HTML entities, URI components, ...",
|
2016-06-06 14:50:30 +02:00
|
|
|
"keywords": [
|
2017-03-15 00:40:28 +01:00
|
|
|
"encode",
|
|
|
|
"decode",
|
2017-03-14 15:42:11 +01:00
|
|
|
"conversion",
|
|
|
|
"converter",
|
|
|
|
"convert"
|
2016-06-06 14:50:30 +02:00
|
|
|
],
|
|
|
|
"author": {
|
|
|
|
"name": "Manuel Friedli",
|
|
|
|
"email": "manuel@fritteli.ch"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
2024-01-22 02:37:28 +01:00
|
|
|
"homepage": "https://conv.friedli.info/",
|
2017-03-14 17:35:36 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-08-31 21:25:24 +02:00
|
|
|
"url": "https://gittr.ch/manuel/converter.git"
|
2017-03-14 17:35:36 +01:00
|
|
|
},
|
2017-04-15 09:38:23 +02:00
|
|
|
"scripts": {
|
|
|
|
"ng": "ng",
|
|
|
|
"start": "ng serve",
|
2024-01-22 00:51:24 +01:00
|
|
|
"build": "ng build",
|
2024-01-22 02:37:28 +01:00
|
|
|
"watch": "ng build --watch --configuration development",
|
|
|
|
"test": "ng test",
|
2024-01-22 02:49:59 +01:00
|
|
|
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless"
|
2017-04-15 09:38:23 +02:00
|
|
|
},
|
|
|
|
"private": true,
|
2016-06-06 14:50:30 +02:00
|
|
|
"dependencies": {
|
2024-01-22 02:37:28 +01:00
|
|
|
"@angular/animations": "^17.1.0",
|
2024-01-22 00:22:01 +01:00
|
|
|
"@angular/common": "^17.1.0",
|
|
|
|
"@angular/compiler": "^17.1.0",
|
|
|
|
"@angular/core": "^17.1.0",
|
|
|
|
"@angular/forms": "^17.1.0",
|
|
|
|
"@angular/platform-browser": "^17.1.0",
|
|
|
|
"@angular/platform-browser-dynamic": "^17.1.0",
|
|
|
|
"@angular/router": "^17.1.0",
|
2024-01-22 00:12:45 +01:00
|
|
|
"punycode": "^2.3.1",
|
|
|
|
"quoted-printable": "^1.0.1",
|
2024-01-22 02:37:28 +01:00
|
|
|
"rxjs": "~7.8.0",
|
|
|
|
"tslib": "^2.3.0",
|
2024-01-22 00:12:45 +01:00
|
|
|
"utf8": "^3.0.0",
|
2024-01-22 02:37:28 +01:00
|
|
|
"zone.js": "~0.14.3"
|
2016-06-06 14:50:30 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-22 00:22:01 +01:00
|
|
|
"@angular-devkit/build-angular": "^17.1.0",
|
|
|
|
"@angular/cli": "^17.1.0",
|
|
|
|
"@angular/compiler-cli": "^17.1.0",
|
2024-01-22 02:37:28 +01:00
|
|
|
"@types/jasmine": "~5.1.0",
|
2024-01-22 00:12:45 +01:00
|
|
|
"@types/node": "^20.11.5",
|
2024-01-22 02:37:28 +01:00
|
|
|
"@types/punycode": "^2.1.3",
|
2024-01-22 00:51:24 +01:00
|
|
|
"@types/quoted-printable": "^1.0.2",
|
|
|
|
"@types/utf8": "^3.0.3",
|
2024-01-22 02:37:28 +01:00
|
|
|
"jasmine-core": "~5.1.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.1.0",
|
|
|
|
"typescript": "~5.3.2"
|
2016-06-06 14:50:30 +02:00
|
|
|
}
|
2024-01-22 00:51:24 +01:00
|
|
|
}
|