UNPKG

@gm50x/chronus

Version:

Chronus is a lightweight Date and Time manipulation library for JavaScript.

55 lines (54 loc) 1.15 kB
{ "name": "@gm50x/chronus", "repository": { "type": "git", "url": "https://github.com/gm50x/chronus" }, "version": "0.5.1", "files": [ "LICENSE", "package.json", "**/*.js", "**/*.js.map", "**/*.d.ts" ], "scripts": { "test": "jest", "prebuild": "rimraf dist", "build": "tsc -p tsconfig.build.json", "postbuild": "copyfiles -a LICENSE README.md package*.json index.ts dist" }, "keywords": [ "Date", "Time", "DateTime", "TimeSpan" ], "author": "Getúlio Magela Silva", "license": "MIT", "description": "Chronus is a lightweight Date and Time manipulation library for JavaScript.", "devDependencies": { "copyfiles": "^2.4.1", "jest": "^26.6.3", "rimraf": "^3.0.2", "ts-jest": "^26.5.0", "typescript": "^4.1.3" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": ".", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "./coverage", "testEnvironment": "node" } }