2016-06-06 14:50:30 +02:00
|
|
|
{
|
2017-04-15 09:38:23 +02:00
|
|
|
"name": "convertorizr",
|
2018-08-31 22:07:38 +02:00
|
|
|
"version": "1.3.1-0",
|
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",
|
2017-03-14 17:35:36 +01:00
|
|
|
"homepage": "https://manuel.pages.gittr.ch/dencode.org",
|
|
|
|
"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",
|
2017-11-07 23:29:36 +01:00
|
|
|
"build": "ng build --delete-output-path",
|
2018-08-31 21:25:24 +02:00
|
|
|
"build-prod": "ng build --prod --optimization --aot --delete-output-path --build-optimizer",
|
2018-09-07 12:36:53 +02:00
|
|
|
"test": "ng test --code-coverage",
|
|
|
|
"test:ci": "ng test --browsers ChromeHeadlessNoSandbox --watch=false --code-coverage",
|
2017-04-15 09:38:23 +02:00
|
|
|
"lint": "ng lint",
|
2017-07-25 22:09:21 +02:00
|
|
|
"e2e": "ng e2e",
|
|
|
|
"postinstall": "npm rebuild node-sass"
|
2017-04-15 09:38:23 +02:00
|
|
|
},
|
|
|
|
"private": true,
|
2016-06-06 14:50:30 +02:00
|
|
|
"dependencies": {
|
2018-09-06 14:06:02 +02:00
|
|
|
"@angular/common": "6.1.7",
|
|
|
|
"@angular/compiler": "6.1.7",
|
|
|
|
"@angular/core": "6.1.7",
|
|
|
|
"@angular/forms": "6.1.7",
|
|
|
|
"@angular/platform-browser": "6.1.7",
|
|
|
|
"@angular/platform-browser-dynamic": "6.1.7",
|
|
|
|
"@angular/router": "6.1.7",
|
2017-11-07 23:29:36 +01:00
|
|
|
"core-js": "^2.5.1",
|
2017-04-08 00:24:44 +02:00
|
|
|
"punycode": "^2.1.0",
|
2016-09-20 22:02:38 +02:00
|
|
|
"quoted-printable": "^1.0.0",
|
2018-09-06 14:06:02 +02:00
|
|
|
"rxjs": "^6.3.2",
|
2017-03-14 15:42:11 +01:00
|
|
|
"utf8": "^2.1.0",
|
2018-08-31 21:25:24 +02:00
|
|
|
"zone.js": "^0.8.26"
|
2016-06-06 14:50:30 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-08-31 21:25:24 +02:00
|
|
|
"@angular-devkit/build-angular": "~0.7.0",
|
|
|
|
"@angular/cli": "6.1.5",
|
2018-09-06 14:06:02 +02:00
|
|
|
"@angular/compiler-cli": "6.1.7",
|
2018-08-31 21:25:24 +02:00
|
|
|
"@types/jasmine": "~2.8.6",
|
|
|
|
"@types/jasminewd2": "~2.0.3",
|
|
|
|
"@types/node": "~8.9.4",
|
|
|
|
"codelyzer": "~4.2.1",
|
|
|
|
"jasmine-core": "~2.99.1",
|
|
|
|
"jasmine-spec-reporter": "~4.2.1",
|
|
|
|
"karma": "~1.7.1",
|
|
|
|
"karma-chrome-launcher": "~2.2.0",
|
|
|
|
"karma-coverage-istanbul-reporter": "~2.0.0",
|
|
|
|
"karma-jasmine": "~1.1.1",
|
2017-03-15 02:22:24 +01:00
|
|
|
"karma-jasmine-html-reporter": "^0.2.2",
|
2018-09-04 00:13:27 +02:00
|
|
|
"karma-nightmare": "~0.4.15",
|
2018-08-31 21:25:24 +02:00
|
|
|
"protractor": "~5.4.0",
|
2018-09-04 00:13:27 +02:00
|
|
|
"puppeteer": "~1.7.0",
|
2018-08-31 21:25:24 +02:00
|
|
|
"ts-node": "~5.0.1",
|
|
|
|
"tslint": "~5.9.1",
|
|
|
|
"typescript": "2.9.2"
|
2016-06-06 14:50:30 +02:00
|
|
|
}
|
|
|
|
}
|