UNPKG

projen

Version:

CDK for software projects

51 lines (50 loc) 1.1 kB
{ "name": "@oozcitak/util", "version": "8.3.8", "keywords": [ "util", "js" ], "homepage": "http://github.com/oozcitak/util", "description": "Utility functions", "author": "Ozgur Ozcitak <oozcitak@gmail.com>", "contributors": [], "license": "MIT", "repository": { "type": "git", "url": "git://github.com/oozcitak/util.git" }, "bugs": { "url": "http://github.com/oozcitak/util/issues" }, "main": "./lib/index", "engines": { "node": ">=8.0" }, "files": [ "lib/**/*" ], "dependencies": {}, "devDependencies": { "typescript": "*", "jest": "*", "ts-jest": "*", "coveralls": "*", "@types/node": "*", "@types/jest": "*" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testEnvironment": "node", "collectCoverageFrom": [ "src/**/*.{ts,tsx}" ] }, "scripts": { "compile": "rm -rf lib && tsc", "test": "npm run compile && jest --coverage", "publish-public": "npm run test && npm publish --access public" } }