This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
49
50
51
52
{
"name": "blockscanchat-sdk",
"version": "1.1.0",
"description": "NPM Package for Blockscan Chat APIs",
"main": "./src/index.js",
"keywords": [
"sdk",
"blockscan",
"blockscan chat",
"blockscan-chat"
],
"scripts": {
"prepare": "husky install",
"commit": "cz",
"lint": "eslint ./src/**.js",
"test": "jest",
"update:packages": "npm install git+ssh://[email protected]:blockscan/blockscanchat-sdk.git#master"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockscan/blockscanchat-sdk.git"
},
"author": "Blockscan",
"license": "MIT",
"bugs": {
"url": "https://github.com/blockscan/blockscanchat-sdk/issues"
},
"homepage": "https://github.com/blockscan/blockscanchat-sdk#readme",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@commitlint/cz-commitlint": "^17.1.2",
"babel-jest": "^29.7.0",
"commitlint": "^17.1.2",
"eslint": "^8.24.0",
"eslint-config-google": "^0.14.0",
"husky": "^8.0.1",
"jasmine": "^4.4.0",
"semantic-release": "^19.0.5"
},
"dependencies": {
"axios": "^1.0.0",
"dotenv": "^16.3.1",
"form-data": "^4.0.0",
"sha3": "^2.1.4"
}
}