-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 986 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
36
37
38
39
40
41
{
"name": "packetize-string",
"version": "0.0.3",
"description": "Packetize and rebuild a string. Mostly for TCP communication.",
"main": "index.js",
"scripts": {
"test": "node node_modules/jasmine-node/bin/jasmine-node --autoTest --watchFolders \"./lib\" tests",
"test1": "node node_modules/jasmine-node/bin/jasmine-node tests",
"jsdoc": "jsdoc -c conf.json"
},
"repository": {
"type": "git",
"url": "https://github.com/marneborn/packetize-string"
},
"keywords": [
"node",
"nodejs",
"tcp",
"packet",
"packetize",
"promise",
"q",
"split"
],
"author": "Mikael Arneborn",
"license": "MIT",
"bugs": {
"url": "https://github.com/marneborn/packetize-string/issues"
},
"homepage": "https://github.com/marneborn/packetize-string",
"devDependencies": {
"jasmine-node": "^2.0.0"
},
"dependencies": {
"node.extend": "^1.1.2",
"q": "^1.0.1"
},
"engines" : {
"node" : ">=0.10.30"
}
}