bsalex/typed-path

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "typed-path",
  "version": "2.2.3",
  "description": "Type safe object string paths for typescript.",
  "main": "dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/bsalex/typed-path.git"
  },
  "author": "Oleksandr Beshchuk <bs.alex.mail@gmail.com>",
  "license": "Apache-2.0",
  "dependencies": {},
  "keywords": [
    "lodash",
    "underscore",
    "typescript",
    "path",
    "types",
    "type",
    "string",
    "ramda",
    "route"
  ],
  "files": [
    "LICENSE",
    "index.ts",
    "dist/index.js",
    "dist/index.js.map",
    "dist/index.d.ts"
  ],
  "types": "dist/index.d.ts",
  "scripts": {
    "test": "yarn tsdlint && jest index.spec.ts",
    "lint": "tslint 'src/**/*.ts' 'src/**/*.tsx'",
    "tsdlint": "yarn build && tsd",
    "format": "prettier --parser typescript --write index.ts index.spec.ts",
    "prepush": "yarn prepare",
    "prepare": "yarn test && yarn build",
    "build": "tsc -p tsconfig.dist.json"
  },
  "devDependencies": {
    "husky": "^0.13.1",
    "jest": "^26.6.3",
    "prettier": "2.2.0",
    "ts-jest": "^26.4.4",
    "ts-node": "^9.0.0",
    "tsd": "^0.13.1",
    "tslint": "^4.4.2",
    "typescript": "^4.0.5"
  },
  "tsd": {
    "directory": "dist"
  }
}