-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.92 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
{
"name": "blacksocket.io",
"version": "1.0.58",
"description": "A websocket wrapper.",
"main": "server.js",
"files": [
"src/*",
"server.js",
"client/*",
"lib/*"
],
"scripts": {
"test": "nyc mocha && nyc report --reporter=text-lcov | coveralls",
"nyc": "nyc mocha test/test.js",
"test-watch": "mocha --watch --bail test/test.js",
"webpack": "webpack --watch",
"dev": "tsc --watch",
"build": "tsc && gulp && webpack",
"docker-build": "docker build . -t blackmiaool/blacksocket.io",
"docker-run": "docker run -it --rm -p 23034:80 -p 23033:23033 blackmiaool/blacksocket.io",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackmiaool/blacksocket.io.git"
},
"author": "blackmiaool",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackmiaool/blacksocket.io/issues"
},
"homepage": "https://github.com/blackmiaool/blacksocket.io#readme",
"dependencies": {
"ws": "^5.2.0"
},
"config": {
"blanket": {
"pattern": "./lib/*"
}
},
"devDependencies": {
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.46",
"@types/ws": "^3.2.0",
"awesome-typescript-loader": "^3.2.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"blanket": "^1.2.3",
"chai": "^4.1.2",
"concat-with-sourcemaps": "^1.0.4",
"coveralls": "^3.0.2",
"fs-extra": "^4.0.2",
"gulp": "^3.9.1",
"gulp-replace": "^0.6.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.9.0",
"typescript": "^2.5.3",
"typescript-eslint-parser": "^8.0.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0"
}
}