UNPKG

ts_crypt

Version:

A TypeScript implementation of the Unix crypt(3) call.

45 lines (44 loc) 1.15 kB
{ "name": "ts_crypt", "version": "1.0.1", "description": "A TypeScript implementation of the Unix crypt(3) call.", "main": "dist/crypt3.js", "files": [ "dist", "README.md", "LICENSE.md" ], "scripts": { "build": "tsc --build --clean && tsc --build", "test": "tsc && nyc --reporter=lcov --require ts-node/register jasmine" }, "repository": { "type": "git", "url": "git+https://github.com/mgaert/ts_crypt.git" }, "keywords": [ "crypt(3)", "ts_crypt", "typescript" ], "author": "Michael Gaertner", "license": "OpenSSL", "bugs": { "url": "https://github.com/mgaert/ts_crypt/issues" }, "homepage": "https://github.com/mgaert/ts_crypt#readme", "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.2", "@types/jasmine": "^3.10.2", "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", "eslint": "^8.5.0", "jasmine": "^3.10.0", "jasmine-spec-reporter": "^7.0.0", "jasmine-ts": "^0.4.0", "nyc": "^15.1.0", "source-map-support": "^0.5.21", "ts-node": "^10.4.0", "typescript": "^4.5.4" } }