diff options
author | Minteck <contact@minteck.org> | 2022-04-09 16:39:03 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-04-09 16:40:02 +0200 |
commit | 0f8967b9113d698cdeb2d05ca85d2d9a80461c24 (patch) | |
tree | 00664ddd9c55a2c33631fd1bd33e556cea9c67e5 /node_modules/defer-to-connect/package.json | |
parent | dac03ac82bc0f8044a4b339c27b5390e4dcecf2f (diff) | |
download | voicer-0f8967b9113d698cdeb2d05ca85d2d9a80461c24.tar.gz voicer-0f8967b9113d698cdeb2d05ca85d2d9a80461c24.tar.bz2 voicer-0f8967b9113d698cdeb2d05ca85d2d9a80461c24.zip |
Diffstat (limited to 'node_modules/defer-to-connect/package.json')
-rw-r--r-- | node_modules/defer-to-connect/package.json | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/node_modules/defer-to-connect/package.json b/node_modules/defer-to-connect/package.json new file mode 100644 index 0000000..34a1170 --- /dev/null +++ b/node_modules/defer-to-connect/package.json @@ -0,0 +1,74 @@ +{ + "name": "defer-to-connect", + "version": "1.1.3", + "description": "The safe way to handle the `connect` socket event", + "main": "dist", + "files": [ + "dist" + ], + "scripts": { + "build": "del-cli dist && tsc", + "prepublishOnly": "npm run build", + "test": "xo && nyc ava", + "coveralls": "nyc report --reporter=text-lcov | coveralls" + }, + "keywords": [ + "socket", + "connect", + "event" + ], + "author": "Szymon Marczak", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/szmarczak/defer-to-connect.git" + }, + "bugs": { + "url": "https://github.com/szmarczak/defer-to-connect/issues" + }, + "homepage": "https://github.com/szmarczak/defer-to-connect#readme", + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "ava/no-ignored-test-files": "off" + } + }, + "devDependencies": { + "@sindresorhus/tsconfig": "^0.5.0", + "@types/node": "^12.12.4", + "@typescript-eslint/eslint-plugin": "^1.11.0", + "@typescript-eslint/parser": "^1.11.0", + "ava": "^2.1.0", + "coveralls": "^3.0.7", + "create-cert": "^1.0.6", + "del-cli": "^3.0.0", + "eslint-config-xo-typescript": "^0.15.0", + "nyc": "^14.0.0", + "p-event": "^4.1.0", + "ts-node": "^8.1.0", + "typescript": "^3.6.4", + "xo": "^0.25.3" + }, + "nyc": { + "extension": [ + ".ts" + ] + }, + "ava": { + "babel": false, + "compileEnhancements": false, + "extensions": [ + "ts" + ], + "require": [ + "ts-node/register" + ], + "files": [ + "!dist/tests/test.d.ts" + ] + }, + "types": "dist" +} |