UNPKG

safename

Version:

Get safe file name from a given string.

61 lines (60 loc) 1.52 kB
{ "name": "safename", "version": "2.0.0", "description": "Get safe file name from a given string.", "main": "lib/safename.js", "types": "lib/safename.d.ts", "scripts": { "linter": "eslint 'src/*.ts'", "test": "jest", "prepublish": "rm -rf lib && tsc", "build": "rm -rf lib && tsc" }, "repository": { "type": "git", "url": "git@github.com:jacoborus/safename.git" }, "keywords": [ "safename", "filename", "diacritics", "normalize-string", "string-manipulation" ], "author": "Jacobo Tabernero Rey <jacobo@xarope.eu>", "contributors": [ "Pavel Lysenko aka Ohar <code@ohar.name> (http://ohar.name)" ], "license": "MIT", "bugs": { "url": "https://github.com/jacoborus/safename/issues" }, "homepage": "https://github.com/jacoborus/safename", "devDependencies": { "@types/jest": "^26.0.21", "@typescript-eslint/eslint-plugin": "^4.19.0", "@typescript-eslint/parser": "^4.19.0", "eslint": "^7.22.0", "eslint-config-standard": "^16.0.2", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jest": "^24.3.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.3.1", "eslint-plugin-standard": "^5.0.0", "jest": "^26.6.3", "ts-jest": "^26.5.4", "ts-node": "^9.1.1", "typescript": "^4.2.3" }, "jest": { "moduleFileExtensions": [ "js", "ts", "json" ], "transform": { ".+\\.tsx?$": "ts-jest" }, "testURL": "http://localhost" } }