-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "socket.io.client.biz",
"version": "1.0.0",
"description": "DFocus wanted ssp feature",
"scripts": {
"build": "rm -rf dist && rollup -c",
"docs:dev": "vuepress dev docs",
"docs:deploy": "vuepress build docs && gh-pages -d docs/.vuepress/dist"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/DFocusGroup/socket.io.client.biz.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"socket.io.client"
],
"author": "Howard.Zuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/DFocusGroup/socket.io.client.biz/issues"
},
"homepage": "https://github.com/DFocusGroup/socket.io.client.biz#readme",
"devDependencies": {
"@types/socket.io-client": "^1.4.33",
"codelyzer": "^5.2.2",
"gh-pages": "^3.0.0",
"prettier": "^2.0.5",
"rollup": "^2.14.0",
"rollup-plugin-typescript2": "^0.27.1",
"tslint": "^6.1.2",
"tslint-angular": "^3.0.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5",
"vuepress": "^1.5.0"
},
"dependencies": {
"socket.io-client": "^2.3.0"
},
"peerDependencies": {
"socket.io-client": "^2.3.0"
}
}