-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
103 lines (103 loc) · 2.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@xuperchain/xuper-sdk",
"version": "2.4.0",
"description": "A simple JS(TS) SDK for XuperOS",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.esm.js",
"scripts": {
"docs": "typedoc --mode file --out docs src",
"lint:fix": "eslint src/*.ts --fix",
"lint": "eslint src/*.ts",
"commit": "git-cz",
"release": "standard-version -a",
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest --passWithNoTests --verbose",
"prepare": "tsdx build",
"prerelease": "tsdx build"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuperchain/xuper-sdk-js.git"
},
"keywords": [
"xuper",
"blockchain",
"xuper-sdk",
"xuper-account",
"xuper-lcv"
],
"author": "Xinyi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/xuperchain/xuper-sdk-js/issues"
},
"homepage": "https://github.com/xuperchain/xuper-sdk-js#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"git-cz": "^4.7.0",
"husky": "^3.1.0",
"jest": "^26.1.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"rollup-plugin-copy": "^3.3.0",
"standard-version": "^9.1.1",
"ts-jest": "^26.1.1",
"ts-loader": "^6.2.2",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typedoc": "^0.15.8",
"typescript": "^3.9.6",
"whatwg-fetch": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@grpc/grpc-js": "^1.2.6",
"@grpc/proto-loader": "^0.5.6",
"@types/aes-js": "^3.1.1",
"@types/bn.js": "^4.11.5",
"@types/elliptic": "^6.4.10",
"@types/json-stable-stringify": "^1.0.32",
"@types/long": "^4.0.1",
"@types/pbkdf2": "^3.0.0",
"@types/sha256": "^0.2.0",
"aes-js": "^3.1.2",
"bn.js": "^5.0.0",
"elliptic": "^6.5.4",
"json-stable-stringify": "^1.0.1",
"long": "^4.0.0",
"node-fetch": "^2.6.1",
"pbkdf2": "^3.0.17",
"ripemd160-min": "0.0.6",
"sha256": "^0.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}