bluechip-utils
Version:
Utitity function package for javsacript and Typescript
58 lines (57 loc) • 1.61 kB
JSON
{
"name": "bluechip-utils",
"version": "1.0.15",
"description": "Utitity function package for javsacript and Typescript",
"main": "./lib/index.js",
"typings": "./lib/index",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"lib/**/*.js\"",
"lint": "eslint -c .eslintrc.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluechiptony/bluechip-utils.git"
},
"keywords": [
"Utitlity",
"functions"
],
"author": "Anthony Egwu",
"license": "ISC",
"bugs": {
"url": "https://github.com/bluechiptony/bluechip-utils/issues"
},
"homepage": "https://github.com/bluechiptony/bluechip-utils#readme",
"devDependencies": {
"@types/camelcase-keys": "^5.1.1",
"@types/jest": "^25.2.3",
"@types/nanoid-dictionary": "^4.2.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"files": [
"lib/**/*"
],
"dependencies": {
"camelcase-keys": "^6.2.2",
"nanoid": "^3.1.20",
"nanoid-dictionary": "^4.2.0",
"neat-csv": "^5.2.0",
"uuid": "^7.0.3"
}
}