-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.57 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
{
"name": "tsjs-xpx-chain-sdk",
"version": "0.11.2",
"description": "Proximax Blockchain sdk for typescript and javascript",
"scripts": {
"pretest": "npm run build",
"test": "mocha --ui bdd --require ts-node/register './test/**/*.spec.*' --timeout 90000",
"test:e2e": "npm run build && mocha --ui bdd --require ts-node/register './e2e/**/*.spec.*' --timeout 300000",
"test:all": "mocha --ui bdd --require ts-node/register './test/**/*.spec.*' './e2e/**/*.spec.*' --timeout 300000",
"build": "rm -rf dist && tsc",
"test:covhtml": "nyc npm t && nyc report --reporter=html --reporter=text-summary",
"test:cov": "nyc --reporter=lcov --reporter=text-lcov npm t && nyc report --reporter=text-lcov",
"test:coveralls": "npm run test:cov | coveralls"
},
"contributors": [
"Thomas Tran <tldinteractive@gmail.com>",
"Yaaccount <tnuoccaay@gmail.com>",
"Chun Lam <chunlam.sees@gmail.com>"
],
"bugs": {
"url": "https://github.com/proximax-storage/tsjs-xpx-chain-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proximax-storage/tsjs-xpx-chain-sdk.git"
},
"license": "Apache-2.0",
"homepage": "https://github.com/proximax-storage/tsjs-xpx-chain-sdk#readme",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/crypto-js": "^3.1.43",
"@types/lodash": "^4.14.201",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/utf8": "^2.1.6",
"@types/ws": "^6.0.1",
"ajv": "^6.12.6",
"assert": "^2.0.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"config": "^3.3.9",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"secure-random": "^1.1.2",
"ts-mockito": "^2.4.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "5.2.2",
"typescript-require": "^0.2.10"
},
"dependencies": {
"@js-joda/core": "^4.0.0",
"@noble/hashes": "^1.3.0",
"axios": "^1.6.2",
"bip39": "^3.0.3",
"bluebird": "^3.5.5",
"crypto-js": "^4.2",
"flatbuffers": "^23.3.3",
"js-sha3": "^0.8.0",
"ripemd160": "^2.0.2",
"rxjs": "^7.8.0",
"utf8": "^3.0.0",
"ws": "^7.1.1"
},
"peerDependencies": {},
"files": [
"dist/index.*",
"dist/src"
],
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"exclude": [
"src/infrastructure/api",
"src/infrastructure/buffers"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"keywords": [
"xpx",
"proximax",
"sdk"
],
"author": "Proximax"
}