-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name" : "@shaitan-masters/centrifugo",
"description" : "Centrifuge v3 back-end API wrapper",
"version" : "0.2.1",
"author" : {
"name" : "Alexander Gropynov | CREW Shaitan Masters",
"email": "alexander.gropyanov@mojam.co"
},
"license" : "MIT",
"repository" : {
"type": "git",
"url" : "git+https://github.com/shaitan-masters/node-centrifugo.git"
},
"keywords" : [
"sdk",
"api",
"centrifuge",
"centrifugo",
"admin",
"wrapper",
"v3"
],
"bugs" : {
"url": "https://github.com/shaitan-masters/node-centrifugo/issues"
},
"homepage" : "https://github.com/shaitan-masters/node-centrifugo#readme",
"scripts" : {
"clean" : "rimraf ./dist",
"compile" : "tsc",
"build" : "npm run clean && npm run compile",
"prepublishOnly": "npm run build"
},
"main" : "./dist/index.js",
"types" : "./dist/index.d.ts",
"dependencies" : {
"axios": "~0.27.1"
},
"devDependencies": {
"@types/node": "~16.11.31",
"typescript" : "~4.6.3",
"rimraf" : "~3.0.2"
}
}