-
Notifications
You must be signed in to change notification settings - Fork 10.2k
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "boiled-socket.io",
"version": "1.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"start:dev": "npx nodemon",
"build": "tsc",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "tslint -p tsconfig.json",
"test": "mocha --timeout 10000 -r ts-node/register src/**/*.test.ts",
"test-single": "mocha --timeout 10000 -r ts-node/register",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahsanaasim/boiled-socket.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ahsanaasim/boiled-socket.io/issues"
},
"homepage": "https://github.com/ahsanaasim/boiled-socket.io#readme",
"dependencies": {
"@types/uuid": "^9.0.1",
"express": "^4.18.2",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"uuid": "^9.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.6",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.2"
}
}