forked from zeromq/zeromq.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.46 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "zeromq",
"version": "6.0.0-beta.11",
"description": "Next-generation ZeroMQ bindings for Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typesVersions": {
">=3.6": {
"lib/*": [
"lib/ts3.6/*"
]
}
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/zeromq/zeromq.js.git"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"node-gyp-build": "^4.5.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4"
},
"devDependencies": {
"@gnd/typedoc": "^0.15.0-0",
"@types/chai": ">=4.3",
"@types/fs-extra": "^9.0.13",
"@types/mocha": ">=10.0",
"@types/node": "^18.11.9",
"@types/semver": ">=7",
"@types/shelljs": "^0.8.11",
"@types/weak-napi": "^2.0.1",
"benchmark": ">=2",
"chai": ">=4.3",
"cross-env": "^7.0.3",
"deasync": "^0.1.28",
"eslint-config-atomic": "^1.18.1",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^10.1.0",
"gunzip-maybe": "^1.4.2",
"mocha": ">=10.1",
"node-fetch": "^3.3.0",
"node-gyp": "^9.3.0",
"npm-run-all2": "^6.0.4",
"prebuildify": "^5.0.1",
"prettier": "^2.7.1",
"rocha": "^2.5.10",
"semver": ">=7",
"tar-fs": "^2.1.1",
"ts-morph": "^16.0.0",
"ts-node": "10.9",
"typescript": "4.9",
"weak-napi": "^2.0.2"
},
"engines": {
"node": ">= 10.2"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"binding.gyp",
"*.d.ts",
"*.js",
"lib",
"src",
"script",
"prebuilds",
"tsconfig.json"
],
"scripts": {
"install": "(shx test -f ./script/build.js || run-s build.js) && node-gyp-build",
"clean": "shx rm -rf ./build ./lib/ ./prebuilds",
"clean.temp": "shx rm -rf ./tmp && shx mkdir -p tmp && shx touch tmp/.gitkeep",
"build.library": "shx rm -rf ./lib && tsc -p ./src/tsconfig.json && node script/ci/downlevel-dts.js",
"build.script": "tsc -p ./script/tsconfig.json",
"build.js": "run-p build.script build.library",
"build.doc": "typedoc --out docs --name zeromq.js --excludeProtected --excludePrivate --excludeNotExported --excludeExternals --externalPattern 'src/+(draft|native|compat).ts' --tsconfig tsconfig-build.json --mode file",
"prebuild": "run-s build.js && node ./script/prebuild.js",
"build.native": "node-gyp configure --release && node-gyp build --release",
"build.native.debug": "cross-env CMAKE_BUILD_TYPE=Debug node-gyp configure --debug && cross-env CMAKE_BUILD_TYPE=Debug node-gyp build --debug",
"build": "run-s build.js build.native",
"build.debug": "run-s build.js build.native.debug",
"test": "run-s build && mocha",
"test.skip_gc_tests": "run-s build.debug && cross-env SKIP_GC_TESTS=true mocha",
"lint.clang-format": "clang-format -i -style=file ./src/*.cc ./src/*.h ./src/util/*.h",
"lint-test.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/",
"lint.eslint": "pnpm run lint-test.eslint --fix",
"lint": "run-p lint.eslint lint.clang-format",
"lint-test": "run-s lint-test.eslint",
"bench": "node --expose-gc test/bench",
"prepublishOnly": "pnpm run build.js"
},
"keywords": [
"zeromq",
"zmq",
"0mq",
"ømq",
"libzmq",
"zmtp",
"message",
"messaging",
"queue",
"async",
"sockets",
"native",
"binding",
"addon",
"napi"
],
"license": "MIT",
"author": "Rolf Timmermans <rolf@zxcv.nl>"
}