-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "ws-server-ftw",
"version": "0.1.3",
"description": "Mock websocket endpoints with ease",
"main": "src/index.js",
"bin": {
"ws-server": "./bin/ws-server.js"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"include": [
"src/*"
]
},
"scripts": {
"test": "NODE_ENV=test && nyc ./node_modules/.bin/mocha",
"coverage": "npm run test && nyc report --reporter=text-lcov | coveralls",
"coverage-html": "npm run test && nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abidibo/ws-server.git"
},
"keywords": [
"websocket",
"mock",
"server"
],
"author": "abidibo <abidibo@gmail.com> (https://www.abidibo.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/abidibo/ws-server/issues"
},
"homepage": "https://github.com/abidibo/ws-server#readme",
"dependencies": {
"argparse": "^1.0.10",
"deepmerge": "^3.0.0",
"terminal-kit": "^1.26.8",
"ws": "^6.1.2"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"sinon": "^7.2.0"
}
}