@speedup/string-to
Version:
Convert all the string variables into their actual data type using different parsers
90 lines (89 loc) • 2.04 kB
JSON
{
"name": "@speedup/string-to",
"version": "1.0.4",
"description": "Convert all the string variables into their actual data type using different parsers",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "tsc",
"rebuild": "run-s clean build",
"test": "mocha --require ts-node/register test/**.spec.ts test/**/*.spec.ts",
"coverage": "nyc npm run test",
"prepublish": "run-s test lint coverage rebuild",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpeedUp-io/nodejs-string-to.git"
},
"keywords": [
"speedup",
"string-to",
"parse",
"parser",
"convert",
"converter",
"int",
"integer",
"float",
"double",
"json",
"str",
"string",
"array",
"list",
"number",
"bool",
"boolean",
"date"
],
"types": "dist/index.d.ts",
"author": "Open Project Templates",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpeedUp-io/nodejs-string-to/issues"
},
"homepage": "https://github.com/SpeedUp-io/nodejs-string-to#readme",
"devDependencies": {
"@types/async": "^3.2.3",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"async": "^3.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.8.1",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage/**/*",
"dist/**/*",
"test/**/*.spec.ts",
"**/*.d.ts"
],
"reporter": [
"text",
"html",
"lcov"
],
"all": true
},
"dependencies": {
"@speedup/error": "^1.0.7",
"validator": "^13.1.1"
}
}