49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "@itsericwoodward/utils",
|
|
"version": "0.1.4",
|
|
"description": "A small collection of common libraries and functions the author likes to use in his Node applications.",
|
|
"main": "./lib/cjs/index.js",
|
|
"module": "./lib/esm/index.js",
|
|
"types": "./lib/esm/index.d.ts",
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"scripts": {
|
|
"build": "rm -rf ./lib && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
|
|
"hint": "npx jshint lib",
|
|
"prepublishOnly": "npm run build && npm test",
|
|
"preversion": "jest",
|
|
"postpublish": "git push && git push --tags",
|
|
"test": "jest",
|
|
"ci": "npm run build && npm test"
|
|
},
|
|
"author": {
|
|
"name": "Eric Woodward",
|
|
"email": "hey@itsericwoodward.com",
|
|
"url": "https://www.itsericwoodward.com"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.itsericwoodward.com/eric/utils.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://git.itsericwoodward.com/eric/utils/issues"
|
|
},
|
|
"homepage": "https://git.itsericwoodward.com/eric/utils#readme",
|
|
"keywords": [],
|
|
"devDependencies": {
|
|
"@tsconfig/node20": "^20.1.2",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20.11.8",
|
|
"jest": "^29.7.0",
|
|
"jshint": "^2.13.6",
|
|
"ts-jest": "^29.1.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.1.2",
|
|
"json5": "^2.2.3"
|
|
}
|
|
}
|