-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
77 lines (77 loc) · 2.31 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "netlinkwrapper",
"version": "2.0.2",
"description": "Synchronous TCP/UDP sockets via NetLink Sockets",
"author": "JacobFischer <jacob.t.fischer@gmail.com>",
"license": "GNU GPL V2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"gypfile": true,
"bugs": {
"url": "https://github.com/JacobFischer/netlinkwrapper/issues"
},
"homepage": "https://jacobfischer.github.io/netlinkwrapper/",
"keywords": [
"net",
"sync",
"synchronous",
"tcp",
"socket",
"network",
"addon"
],
"repository": {
"type": "git",
"url": "https://github.com/JacobFischer/netlinkwrapper.git"
},
"dependencies": {
"bindings": "1.5.0",
"nan": "2.14.1"
},
"devDependencies": {
"@types/bindings": "1.3.0",
"@types/chai": "4.2.12",
"@types/eslint": "7.2.0",
"@types/mocha": "8.0.1",
"@types/node": "14.0.27",
"@typescript-eslint/eslint-plugin": "3.8.0",
"chai": "4.2.0",
"eslint": "7.6.0",
"eslint-config-jacobfischer": "git://github.com/JacobFischer/eslint-config.git#94bffc94da2336b08dd5159a1ab4c93525c46d4b",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "30.2.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prettier": "3.1.4",
"mocha": "8.1.1",
"npm-check-updates": "7.0.3",
"prettier": "2.0.5",
"shx": "0.3.2",
"ts-mocha": "7.0.0",
"ts-node": "8.10.2",
"ts-typed-events": "2.0.0",
"typedoc": "0.18.0",
"typescript": "3.9.7"
},
"scripts": {
"clean": "npm run clean:build && npm run clean:docs",
"clean:build": "shx rm -rf build/ dist/",
"clean:docs": "shx rm -rf docs/",
"purge": "npm run clean && shx rm -rf node_modules/ && rm -rf package-lock.json",
"docs": "typedoc --module commonjs --includeDeclarations --mode file --excludeNotExported --excludeExternals --out docs lib",
"docs:predeploy": "shx touch docs/.nojekyll",
"build": "node-gyp rebuild",
"lint": "eslint ./",
"prettier:base": "prettier **/*.{js,ts}",
"prettier": "npm run prettier:base -- --write",
"prettier:check": "npm run prettier:base -- --check",
"ts:check": "tsc --noEmit",
"test": "ts-mocha --paths test/**/*.test.ts --config test/.mocharc.js",
"ncu": "ncu -u"
},
"files": [
"binding.gyp",
"lib/",
"src/"
]
}