skip to Main Content

Json – How to generate the following string?

Consider the following a snippet from my package.json "dependencies": { "@types/lodash.camelcase": "^4.3.6", "@types/lodash.kebabcase": "^4.1.6", "@types/lodash.lowercase": "^4.3.6", "@types/lodash.upperfirst": "^4.3.6", "@types/mime": "^2.0.3", "@types/swagger-jsdoc": "^6.0.1", "async": "^3.2.2", "aws-arn": "^1.0.1", } From this, I want to generate the following string - @types/lodash.camelcase@^4.3.6 @types/lodash.kebabcase@^4.1.6 @types/lodash.lowercase@^4.3.6…

VIEW QUESTION
Back To Top
Search