-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "@socket-factory/client",
"version": "0.0.1-a",
"description": "\"socket factory client lib\"",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-dev": "webpack --watch --mode=development",
"webpack-prod": "webpack --mode=production",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/socketfactory/client.git"
},
"keywords": [
"socket",
"Websocket",
"websocketAPI",
"js",
"ts",
"websocket",
"socket-factory",
"socket-factory client",
"socket client"
],
"author": "VivinMeth",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/socketfactory/client/issues"
},
"homepage": "https://gitlab.com/socketfactory/client#readme",
"devDependencies": {
"@babel/core": "^7.12.13",
"babel-loader": "^8.2.2",
"typescript": "^4.1.3",
"webpack": "^5.20.0",
"webpack-cli": "^4.5.0"
}
}