-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 948 Bytes
/
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
{
"name": "ht-tcp-transport",
"version": "1.0.0",
"description": "Hudson-Taylor TCP transport",
"main": "lib/index.js",
"scripts": {
"test": "semistandard && mocha -r babel-register -R spec --bail",
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hudson-taylor/tcp-transport.git"
},
"keywords": [
"hudson-taylor",
"ht-transport"
],
"author": "Adam Brady <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hudson-taylor/tcp-transport/issues"
},
"homepage": "https://github.com/hudson-taylor/tcp-transport#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"mocha": "^2.4.5",
"openport": "0.0.4",
"semistandard": "^7.0.5"
},
"dependencies": {}
}