UNPKG

tiny-types

Version:

A tiny library that brings Tiny Types to JavaScript and TypeScript

108 lines (107 loc) 2.71 kB
{ "name": "tiny-types", "version": "1.24.1", "description": "A tiny library that brings Tiny Types to JavaScript and TypeScript", "main": "lib/index.js", "typings": "lib/index.d.ts", "scripts": { "clean": "rimraf docs lib reports", "lint": "eslint --ext ts --config .eslintrc.yml .", "lint:fix": "npm run lint -- --fix", "test": "nyc --report-dir ./reports/coverage mocha 'spec/**/*.spec.*'", "compile": "tsc --project tsconfig.json", "verify": "npm run clean && npm run lint && npm test && npm run compile", "doc": "esdoc", "commit": "git-cz", "semantic-release": "semantic-release" }, "repository": { "type": "git", "url": "git+https://github.com/jan-molak/tiny-types.git" }, "publishConfig": { "access": "public", "provenance": true }, "keywords": [ "design", "patterns", "value", "objects", "tiny", "types", "ddd", "domain-driven", "design" ], "author": "Jan Molak <jan.molak@smartcodeltd.co.uk>", "license": "Apache-2.0", "bugs": { "url": "https://github.com/jan-molak/tiny-types/issues" }, "homepage": "https://jan-molak.github.io/tiny-types/", "engines": { "node": "^20 || ^22 || >=24.0.0" }, "devDependencies": { "@types/chai": "4.3.20", "@types/mocha": "10.0.10", "@types/node": "20.19.9", "@types/sinon": "17.0.4", "@types/sinon-chai": "3.2.12", "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "chai": "4.5.0", "cheerio": "1.1.2", "commitizen": "4.3.1", "cz-conventional-changelog": "3.3.0", "esdoc": "1.1.0", "esdoc-importpath-plugin": "1.0.2", "esdoc-inject-style-plugin": "1.0.0", "esdoc-standard-plugin": "1.0.0", "esdoc-typescript-plugin": "1.0.1", "eslint": "8.57.1", "eslint-plugin-import": "2.32.0", "eslint-plugin-mocha": "10.5.0", "eslint-plugin-simple-import-sort": "12.1.1", "eslint-plugin-unicorn": "56.0.1", "eslint-plugin-unused-imports": "4.1.4", "mocha": "11.7.1", "mocha-testdata": "1.2.0", "nyc": "17.1.0", "rimraf": "6.0.1", "semantic-release": "24.2.7", "sinon": "21.0.0", "sinon-chai": "3.7.0", "ts-node": "10.9.2", "typescript": "5.9.2" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "nyc": { "include": [ "src/*.ts", "src/**/*.ts" ], "exclude": [ "lib", "node_modules", "spec", "src/types" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [ "lcov" ], "cache": true, "all": true } }