-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 791 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 791 Bytes
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
{
"name": "@mintpond/mint-socket",
"version": "1.1.0",
"description": "Message serialization wrappers for NodeJS net.Socket",
"author": "JCThePants",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@mintpond/mint-bos": "^2.0.1",
"@mintpond/mint-precon": "^1.0.0",
"@mintpond/mint-utils": "^2.0.0"
},
"devDependencies": {
"mocha": "^7.1.2"
},
"scripts": {
"test": "mocha tests/mocha.*"
},
"homepage": "https://github.com/MintPond/mint-socket",
"bugs": {
"url": "https://github.com/MintPond/mint-socket/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MintPond/mint-socket.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": ">=10.17.0"
}
}