-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.05 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
{
"name": "@sugoi/socket",
"version": "4.3.1",
"description": "sugoi framework socket handler, based on socket.io",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"docs": "..\\node_modules\\.bin\\typedoc --out ..\\dist\\docs\\sockets --json dist\\docs\\main.json --ignoreCompilerErrors --excludeNotExported --excludeProtected --excludePrivate --readme .\\README.md --mode file --hideGenerator --gitRevision '1.0.0' --externalPattern node_modules/**/* --excludeExternals",
"test": "jest --config=jest.config.js --coverage --detectOpenHandles",
"coverage": "jest --coverage --coverageReporters=text-lcov --detectOpenHandles | curl -s https://codecov.io/bash | bash",
"build:publish": "npm run build && npm test",
"update:patch": "npm version patch && npm publish && npm run docs",
"update:minor": "npm version minor && npm publish && npm run docs",
"update:major": "npm version major && npm publish && npm run docs",
"build": "rimraf dist && tsc",
"release": "standard-version -a"
},
"files": [
"dist/**/*"
],
"keywords": [
"socket.io",
"decorators",
"annotations",
"framework",
"module",
"@sugoi",
"sugoi",
"@sugoijs",
"sugoijs"
],
"homepage": "sugoijs.com",
"bugs": {
"url": "https://github.com/sugoiJS/socket/issues",
"email": "oba.sugoi@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/sugoiJS/socket"
},
"author": "Orel Balilti",
"license": "MIT",
"dependencies": {
"@sugoi/core": "^4.0.2",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"socket.io": "^4.1.3",
"socket.io-cookie": "^0.0.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^24.9.1",
"@types/node": "^12.11.2",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"socket.io-client": "^4.1.3",
"standard-version": "^9.3.1",
"ts-jest": "^24.0.2",
"typescript": "^4.4.2"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./dist/coverage"
}
}