block-obj-builder
Version:
Block object builder
52 lines (50 loc) • 1.27 kB
JSON
{
"name": "block-obj-builder",
"version": "1.0.2",
"description": "Block object builder",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "rm -rf lib && tsc",
"lint": "eslint . --ext .ts --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"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": ""
},
"keywords": [
"Block",
"wbb"
],
"author": "Himanshu",
"license": "ISC",
"homepage": "",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.5.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"bson-objectid": "^1.3.1",
"circular-json": "^0.5.9",
"crypto": "^1.0.1",
"deep-equal": "^2.0.4"
}
}