forked from mafintosh/turbo-net
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1016 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
42
43
44
{
"name": "@foxify/net",
"version": "1.0.0",
"description": "Low level TCP library",
"author": "Ardalan Amini <[email protected]> (https://ardalanamini.com)",
"license": "MIT",
"homepage": "https://github.com/foxifyjs/net",
"bugs": {
"url": "https://github.com/foxifyjs/net/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/foxifyjs/net.git"
},
"scripts": {
"install": "node-gyp-build",
"test": "jest",
"test-old": "tape test/*.js",
"prebuild": "prebuildify --napi"
},
"main": "index.js",
"dependencies": {
"napi-macros": "^1.8.2",
"node-gyp-build": "^3.8.0",
"semver": "^5.6.0",
"unordered-set": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.9.6",
"jest": "^24.1.0",
"prebuildify": "^2.11.0",
"speedometer": "^1.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"node"
],
"testMatch": [
"<rootDir>/test/**/*\\.js"
]
}
}