hollaex-node-lib 2.14.1 → 2.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hollaex-node-lib",
3
- "version": "2.14.1",
3
+ "version": "2.15.1",
4
4
  "description": "hollaex api and websocket library for nodejs",
5
5
  "main": "index.js",
6
6
  "dependencies": {
package/.drone.yml DELETED
@@ -1,59 +0,0 @@
1
- kind: pipeline
2
- type: docker
3
- name: slack_notify
4
-
5
- steps:
6
- - name: partymaker_version_tag_testnet
7
- image: alpine
8
- commands:
9
- - export PACKAGE_VERSION="$(grep version package.json | cut -c 14- | rev | cut -c 3- | rev)" && echo "$PACKAGE_VERSION" > .tags
10
- - echo "Current version tag is :" && cat .tags
11
- when:
12
- branch: master
13
-
14
- - name: partymaker_version_tag
15
- image: alpine
16
- commands:
17
- - export PACKAGE_VERSION="$(grep version package.json | cut -c 14- | rev | cut -c 3- | rev)" && echo "$PACKAGE_VERSION-testnet" > .tags
18
- - echo "Current version tag is :" && cat .tags
19
- when:
20
- branch: testnet
21
-
22
- - name: create_github_release
23
- image: bitholla/devops-tools:drone_github_hub-2004241546
24
- environment:
25
- GITHUB_TOKEN:
26
- from_secret: github_oauth2_token_for_releases
27
- commands:
28
- - apt-get update && apt-get install -y hub git
29
- - hub release create -m "HollaEx Kit v$(cat .tags) Release" -t ${DRONE_BRANCH} $(cat .tags)
30
- when:
31
- branch: master
32
-
33
- - name: slack_noti_to_releases
34
- image: bitholla/devops-tools:drone_partymaker-0.1.4
35
- environment:
36
- WEBHOOK_URL:
37
- from_secret: webhook_url
38
- when:
39
- status: [success]
40
-
41
- - name: notify_to_discord_releases
42
- image: bitholla/devops-tools:drone_partymaker-0.1.5
43
- channel: deployment
44
- settings:
45
- target: discord
46
- release_name: hollaex-node-lib
47
- environment:
48
- WEBHOOK_URL:
49
- from_secret: discord_webhook_url
50
- when:
51
- status: [ success, failure ]
52
- branch: master
53
-
54
- trigger:
55
- branch:
56
- - master
57
- - testnet
58
- event:
59
- - push
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2020 bitHolla
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.