mirror of
https://github.com/socketio/socket.io.git
synced 2026-01-15 01:48:01 -05:00
Fixes the following error: > test/todo-management/todo.tests.ts:275:3 - error TS2582: Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha`. Co-authored-by: brownman <brownman@users.noreply.github.com>
38 lines
984 B
JSON
38 lines
984 B
JSON
{
|
|
"name": "basic-crud-server",
|
|
"version": "0.0.1",
|
|
"description": "Server for the Basic CRUD Socket.IO example",
|
|
"main": "dist/lib/index.js",
|
|
"scripts": {
|
|
"start": "ts-node lib/index.ts",
|
|
"build": "tsc",
|
|
"test": "nyc mocha --require ts-node/register test/**/*.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/socketio/socket.io.git"
|
|
},
|
|
"author": "Damien Arrachequesne <damien.arrachequesne@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/socketio/socket.io/issues"
|
|
},
|
|
"homepage": "https://github.com/socketio/socket.io#readme",
|
|
"dependencies": {
|
|
"joi": "^17.4.0",
|
|
"socket.io": "^4.0.1",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^8.2.3",
|
|
"@types/chai": "^4.2.16",
|
|
"@types/uuid": "^8.3.0",
|
|
"chai": "^4.3.4",
|
|
"mocha": "^8.3.2",
|
|
"nyc": "^15.1.0",
|
|
"socket.io-client": "^4.0.1",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.2.4"
|
|
}
|
|
}
|