This repository has been archived by the owner on Nov 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.82 KB
/
package.json
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
{
"name": "connect.io",
"version": "3.1.3",
"description":
"Real-time bidirectional event-based and Promise friendly communication in Chrome extensions or Apps inspired by Socket.IO. ",
"scripts": {
"test": "karma start",
"build": "node build/build.js",
"prepublishOnly":
"karma start --single-run --no-auto-watch && npm run build"
},
"main": "dist/chrome-connect.common.js",
"module": "dist/chrome-connect.esm.js",
"unpkg": "dist/chrome-connect.js",
"types": "declaration/src/index.d.ts",
"keywords": [
"chrome",
"connect",
"socket",
"real time",
"event-based",
"promise",
"bidirectional",
"chrome extension",
"chrome app"
],
"files": ["dist", "src", "declaration/src"],
"dependencies": {
"@types/chrome": "0.0.52",
"tinyemitter": "^1.0.1",
"tslib": "^1.8.0"
},
"devDependencies": {
"@types/es6-promise": "0.0.33",
"@types/karma-jasmine": "0.0.29",
"chrome-env": "0.1.0",
"es6-promise": "^4.0.5",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^3.0.8",
"phantomjs-prebuilt": "^2.1.16",
"rollup": "^0.51.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript2": "^0.8.0",
"typescript": "^2.6.1",
"uglify-js": "^3.1.8"
},
"repository": "Selection-Translator/connect.io",
"author": "Milk Lee <[email protected]> (http://www.limingkai.cn/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Selection-Translator/connect.io/issues"
},
"homepage": "https://github.com/Selection-Translator/connect.io"
}