-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 921 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": "csocket",
"version": "1.0.3",
"description": "Port for C's `sys/socket.h` methods for synchronous usage of sockets as file descriptors.",
"main": "src/index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text --reporter=html mocha --recursive test/unit/ && eslint src/ test/"
},
"files": [
"src/",
"binding.gyp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/puresec/node-csocket.git"
},
"author": "Oded Niv",
"license": "MIT",
"bugs": {
"url": "https://github.com/puresec/node-csocket/issues"
},
"homepage": "https://github.com/puresec/node-csocket#readme",
"dependencies": {
"nan": "^2.11.1",
"node-gyp-build": "^3.5.1"
},
"devDependencies": {
"@puresec/eslint-config-base": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"get-port": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}