-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "@ainblockchain/connect-sdk",
"version": "0.8.12",
"description": "SDK for AIN Connect functionality",
"repository": {
"type": "git",
"url": "git+https://github.com/ainblockchain/ain-connect-sdk.git"
},
"author": "AIN Dev Team",
"bugs": {
"url": "https://github.com/ainblockchain/ain-connect-sdk/issues"
},
"homepage": "https://github.com/ainblockchain/ain-connect-sdk#readme",
"keywords": [
"ainetwork",
"ain",
"ainconnect",
"blockchain"
],
"scripts": {
"test": "jest",
"build": "./build.sh",
"start": "tsc && node dist/index.js serve",
"lint": "eslint src/*.ts src/**/*.ts src/**/**/*.ts src/**/**/**/*.ts",
"lint:fix": "eslint --fix src/*.ts src/**/*.ts src/**/**/*.ts src/**/**/**/*.ts"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@types/bip39": "^3.0.0",
"@types/hdkey": "^2.0.0",
"@types/jest": "^26.0.7",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn lint"
}
},
"dependencies": {
"@ainblockchain/ain-js": "^1.3.0",
"@ainblockchain/ain-util": "^1.1.9",
"@google-cloud/storage": "^5.16.0",
"bip39": "^3.0.2",
"firebase": "^7.19.0",
"hdkey": "^2.0.1",
"nanoid": "^3.1.30",
"valid-url": "^1.0.9",
"xhr2": "^0.2.1"
}
}