worker-parrot-party
Version:
Parrot party for everyone
61 lines (60 loc) • 1.92 kB
JSON
{
"name": "worker-parrot-party",
"version": "2.0.4",
"description": "Parrot party for everyone",
"main": "dist/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"lint": "eslint .",
"format": "prettier --write \"src/**/*.ts\" \"dist/**/*.js\"",
"build": "tsc",
"build:types": "tsc -d --declarationDir dist/lib --declarationMap --emitDeclarationOnly",
"prepare": "npm run build && npm run build:types",
"publishMinor": "npm version minor && git push --tags && git push && npm publish",
"publishPatch": "npm version patch && git push --tags && git push && npm publish",
"publishMajor": "npm version major && git push --tags && git push && npm publish",
"prepublishOnly": "npm run lint",
"samples:simple": "ts-node samples/simple-task",
"samples:complex": "ts-node samples/complex-task"
},
"files": [
"/dist/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:graned/worker-parrot-party.git"
},
"keywords": [
"Threads",
"workers",
"typescript"
],
"author": "gran_ed@hotmail.com",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/graned/worker-parrot-party/issues"
},
"homepage": "https://github.com/graned/worker-parrot-party#readme",
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"node-fetch": "^3.2.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"worker-parrot-party": "^1.3.0"
},
"dependencies": {
"config": "^3.3.7",
"ts-node": "^10.5.0",
"tsc-prog": "^2.2.1",
"tslog": "^3.3.2",
"uuid": "^8.3.2"
}
}