utils/package.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2024-01-27 01:25:35 -05:00
{
2024-01-27 01:54:27 -05:00
"name": "@itsericwoodward/utils",
2024-01-27 20:42:43 -05:00
"version": "0.1.5",
2024-01-27 12:14:47 -05:00
"description": "A small collection of common libraries and functions the author likes to use in his Node applications.",
2024-01-27 01:25:35 -05:00
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
2024-01-27 12:14:47 -05:00
"types": "./lib/esm/index.d.ts",
2024-01-27 01:25:35 -05:00
"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",
2024-01-27 01:54:27 -05:00
"url": "https://git.itsericwoodward.com/eric/utils.git"
2024-01-27 01:25:35 -05:00
},
"bugs": {
2024-01-27 01:54:27 -05:00
"url": "https://git.itsericwoodward.com/eric/utils/issues"
2024-01-27 01:25:35 -05:00
},
2024-01-27 01:54:27 -05:00
"homepage": "https://git.itsericwoodward.com/eric/utils#readme",
2024-01-27 01:25:35 -05:00
"keywords": [],
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.11",
2024-01-27 17:40:42 -05:00
"@types/node": "^20.11.8",
2024-01-27 01:25:35 -05:00
"jest": "^29.7.0",
"jshint": "^2.13.6",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
2024-01-27 17:40:42 -05:00
},
"dependencies": {
"chalk": "^4.1.2",
"json5": "^2.2.3"
2024-01-27 01:25:35 -05:00
}
}