-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
{
"name": "boa-sdk-ts",
"version": "0.2.25",
"description": "The TypeScript BOA SDK library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "rimraf ./lib && tsc",
"test": "rimraf ./lib && tsc && mocha -r ts-node/register tests/**/**/*.test.ts",
"testnobuild": "mocha -r ts-node/register tests/**/*.test.ts",
"build": "rimraf ./lib && tsc",
"browser": "rimraf ./dist && webpack --config webpack.config.js",
"docs": "rimraf ./docs && ./node_modules/.bin/typedoc --options ./typedoc.js --module commonjs",
"lint": "tslint --config tslint.json \"{src,tests}/**/*.ts\"",
"lint-fix": "tslint --fix --config tslint.json \"{src,tests}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosagora/boa-sdk-ts.git"
},
"keywords": [
"SDK",
"TypeScript"
],
"author": "BOSAGORA Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/bosagora/boa-sdk-ts/issues"
},
"homepage": "https://bosagora.github.io/boa-sdk-ts/",
"dependencies": {
"@ctrl/ts-base32": "^1.2.1",
"ajv": "^6.12.6",
"axios": "^0.21.1",
"bech32": "^2.0.0",
"boa-sodium-base-ts": "0.1.0",
"crc": "^3.8.0",
"jsbi": "^3.1.6",
"lodash": "^4.17.19",
"smart-buffer": "^4.1.0",
"socket.io-client": "^4.2.0",
"urijs": "^1.19.2"
},
"devDependencies": {
"@types/bech32": "^1.1.2",
"@types/chai": "^4.2.11",
"@types/crc": "^3.4.0",
"@types/express": "^4.17.6",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/socket.io": "^3.0.2",
"@types/urijs": "^1.19.9",
"assert": "^2.0.0",
"boa-sodium-ts": "^0.1.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"express": "^4.17.1",
"mocha": "^8.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"socket.io": "^4.2.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}