forked from apache/pulsar-client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
{
"name": "pulsar-client",
"version": "2.4.0-SNAPSHOT",
"description": "Pulsar Node.js client",
"main": "index.js",
"directories": {
"src": "src",
"example": "examples"
},
"scripts": {
"clean": "node-gyp clean",
"configure": "node-gyp configure",
"lint": "eslint --ext .js .",
"format": "clang-format -i --verbose src/* && eslint --fix --ext .js .",
"build": "npm run format && node-gyp rebuild",
"build:debug": "npm run format && node-gyp rebuild --debug",
"license:report": "mkdir -p report && grunt grunt-license-report",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/apache/pulsar-client-node.git"
},
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"gypfile": true,
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"clang-format": "^1.2.4",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"grunt": "^1.0.4",
"grunt-license-report": "^0.0.8",
"jest": "^24.7.1",
"node-addon-api": "^1.6.2",
"node-gyp": "^3.8.0"
},
"dependencies": {
"bindings": "^1.3.1",
"commander": "^2.19.0",
"delay": "^4.1.0",
"hdr-histogram-js": "^1.1.4",
"lodash": "^4.17.11"
}
}