Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
ts-dedent
/
Filename :
package.json
back
Copy
{ "name": "ts-dedent", "version": "2.1.1", "description": "TypeScript package which smartly trims and strips indentation from multi-line strings", "author": "Tamino Martinius <dev@zaku.eu>", "main": "./dist/index.js", "module": "./dist/index.js", "jsnext:main": "./dist/index.js", "typings": "./dist/index.d.ts", "license": "MIT", "files": [ "dist", "src" ], "repository": { "type": "git", "url": "https://github.com/tamino-martinius/node-ts-dedent.git" }, "keywords": [ "dedent", "deindent", "indentation", "multi-line string", "multiline strings", "template literals", "template strings", "ts", "typescript", "es6", "harmony" ], "engines": { "node": ">=6.10" }, "scripts": { "coverage": "rm -rf coverage* && jest --coverage", "pretest": "npm run lint", "test": "jest", "lint": "eslint .", "watch": "tsc -w", "ci": "npm run coverage && codecov", "compile": "rm -rf dist/* && tsc", "preversion": "npm run compile && git add ." }, "devDependencies": { "@types/jest": "^26.0.22", "@typescript-eslint/eslint-plugin": "^4.20.0", "@typescript-eslint/parser": "^4.20.0", "codecov": "^3.8.1", "eslint": "^7.23.0", "jest": "^26.6.3", "ts-jest": "^26.5.4", "typescript": "~4.2.3" }, "jest": { "transform": { ".ts": "ts-jest" }, "testRegex": "\\.(test|spec)\\.ts$", "moduleFileExtensions": [ "ts", "tsx", "js", "json" ] } }