forked from apache/pulsar-client-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.1 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
115
116
117
{
"name": "pulsar-client",
"version": "1.8.0-rc.0",
"description": "Pulsar Node.js client",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"src": "src",
"example": "examples"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"configure": "node-pre-gyp configure",
"build": "npm run format && node-pre-gyp build",
"build:debug": "npm run format && node-pre-gyp rebuild --debug",
"clean": "node-pre-gyp clean",
"lint": "clang-format-lint src/*.cc src/*.h && eslint --ext .js .",
"format": "clang-format-lint --fix src/*.cc src/*.h && eslint --fix --ext .js .",
"dtslint": "dtslint .",
"license:report": "mkdir -p report && grunt grunt-license-report",
"license:addheader": "license-check-and-add",
"test": "jest --verbose --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/apache/pulsar-client-node.git"
},
"homepage": "https://pulsar.apache.org/docs/en/client-libraries-node",
"author": "Apache Software Foundation",
"license": "Apache-2.0",
"gypfile": true,
"engines": {
"node": ">=10.16.0"
},
"devDependencies": {
"@seadub/clang-format-lint": "0.0.2",
"@types/node": "^14.14.25",
"clang-format": "^1.4.0",
"commander": "^6.1.0",
"delay": "^4.4.0",
"dtslint": "^3.4.2",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.3.6",
"grunt": "^1.4.1",
"grunt-license-report": "^0.0.8",
"hdr-histogram-js": "^2.0.1",
"jest": "^27.2.4",
"license-check-and-add": "^2.3.6",
"lodash": "^4.17.21",
"typescript": "^4.1.3"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0"
},
"binary": {
"module_name": "Pulsar",
"module_path": "./lib/binding/",
"host": "https://dist.apache.org/repos/dist/release/pulsar/pulsar-client-node/",
"remote_path": "pulsar-client-node-{version}",
"package_name": "napi-{platform}-{libc}-{arch}.tar.gz"
},
"license-check-and-add-config": {
"folder": ".",
"license": "license-header.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
".git/",
"build/",
"node_modules/",
"report/",
"LICENSE"
],
"file_type_method": "EXCLUDE",
"file_types": [
".json",
".pem",
".txt",
".gz"
],
"trailing_whitespace": "TRIM",
"insert_license": true,
"default_format": {
"prepend": "#",
"eachLine": {
"prepend": "# "
},
"append": "#"
},
"license_formats": {
"c|cc|cpp|h|hpp|js|ts|css": {
"prepend": "/**",
"eachLine": {
"prepend": " * "
},
"append": " */"
},
"conf|gitignore|npmignore|eslintignore|sh|py": {
"prepend": "#",
"eachLine": {
"prepend": "# "
},
"append": "#"
},
"html|xml|md": {
"prepend": "<!--\n",
"eachLine": {
"prepend": " "
},
"append": "\n-->"
}
}
}
}