-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 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
63
64
65
{
"name": "@cesarbr/knot-cloud-websocket",
"version": "1.1.3",
"description": "KNoT Cloud WebSocket library for NodeJS and browser",
"contributors": [
"Thiago Cardoso <[email protected]>",
"Paulo Serra Filho <[email protected]>",
"Ramon Ribeiro <[email protected]>",
"Joao Alexandre Neto <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud-websocket.git"
},
"main": "./dist/main.js",
"module": "./dist/module.mjs",
"browser": "./dist/browser.js",
"author": "KNoT",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"rollup": "^0.67.3",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0"
},
"dependencies": {
"eventemitter3": "^3.1.0",
"isomorphic-ws": "^4.0.1",
"pre-commit": "^1.2.2",
"ws": "^6.1.2"
},
"engines": {
"node": ">=6"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"pre-commit": [
"lint"
]
}