-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "pulsar-admin",
"version": "0.0.1",
"description": "A TypeScript-based Pulsar admin HTTP client using Axios",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint '**/*.ts'",
"prettier": "prettier --check '**/*.ts'",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protocol-laboratory/pulsar-admin-ts.git"
},
"keywords": [
"pulsar",
"admin",
"client",
"http",
"typescript",
"axios"
],
"author": "shoothzj",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/protocol-laboratory/pulsar-admin-ts/issues"
},
"homepage": "https://github.com/protocol-laboratory/pulsar-admin-ts#readme",
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"axios": "^0.26.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^0.26.1"
}
}