forked from emailjs/emailjs-tcp-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.67 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
66
{
"name": "emailjs-tcp-proxy",
"version": "1.0.2",
"description": "Tunnels tcp connections to Socket.IO without TLS termination",
"main": "dist/proxy.js",
"scripts": {
"start": "node dist/server.js",
"start-dev": "npx babel-node src/server.js --presets env",
"build": "./scripts/build.sh",
"release": "./scripts/release.sh",
"lint": "$(npm bin)/standard",
"test": "npm run lint && npm run integration",
"integration": "NODE_ENV=integration npx mocha './src/*-integration.js' --reporter spec --require babel-register testutils.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emailjs/emailjs-tcp-proxy.git"
},
"keywords": [
"emailjs",
"sockets",
"tcp",
"tls",
"raw",
"sockets"
],
"author": "Felix Hammerl <felix.hammerl@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emailjs/emailjs-tcp-proxy/issues"
},
"homepage": "https://github.com/emailjs/emailjs-tcp-proxy#readme",
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"afterEach",
"after",
"expect"
],
"ignore": [
"dist"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"node-forge": "^0.7.1",
"nodemon": "^1.12.1",
"pre-commit": "^1.2.2",
"socket.io-client": "^2.0.4",
"standard": "^11.0.0",
"starttls": "https://github.com/felixhammerl/starttls/tarball/master"
},
"dependencies": {
"express": "^4.16.2",
"morgan": "^1.9.0",
"npmlog": "^4.1.2",
"socket.io": "^2.0.4"
}
}