This repository was archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.3 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@eix-js/ws-server",
"version": "1.0.0",
"description": "...",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"lint:fix": "prettier-eslint \"**/*.ts\" --write",
"test": "mocha",
"docs": "typedoc --out docs ./src",
"prebuild": "rimraf dist",
"build": "rollup -c",
"postbuild": "tsc --emitDeclarationOnly"
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"git add ."
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/eix-js/core"
},
"keywords": [
"engine",
"core",
"eix"
],
"author": "Matei Adriel",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/eix-js/core/issues"
},
"homepage": "https://github.com/eix-js/core/#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/chai": "^4.1.7",
"@types/mitm": "^1.3.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@types/sinon": "^7.0.13",
"@types/ws": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsdoc": "^7.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "^2.0.1",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mitm": "^1.7.0",
"mocha": "^6.1.4",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.3",
"rollup": "^1.15.6",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^5.0.3",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript": "^1.0.1",
"sinon": "^7.3.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"tslib": "^1.10.0",
"typedoc": "^0.14.2",
"typedoc-plugin-external-module-name": "^2.1.0",
"typedoc-vortex-theme": "0.0.2",
"typescript": "^3.4.4"
},
"dependencies": {
"@eix-js/core": "0.0.6",
"ee-ts": "^1.0.1",
"rxjs": "^6.5.2",
"ws": "^7.0.1"
}
}