-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "ternoa-js",
"version": "1.6.5",
"description": "Ternoa library of functions to interact with the blockchain and manipulate transactions",
"engines": {
"node": ">=14.13.1 || >=16.0.0"
},
"main": "./src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "rimraf build && tsc && node ./src/_misc/scripts/build.mjs",
"docs": "typedoc ./src/index.ts",
"lint": "eslint ./src --ext .js,.ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "npx jest --config jest.config.ts -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capsule-corp-ternoa/ternoa-js.git"
},
"keywords": [
"ternoa",
"blockchain",
"transaction",
"sdk",
"substrate"
],
"author": "Ghali Leouarz",
"contributors": [
{
"name": "Igor Papandinas"
},
{
"name": "Victor Salomon"
},
{
"name": "Marko Petrlic"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/capsule-corp-ternoa/ternoa-js/issues"
},
"homepage": "https://github.com/capsule-corp-ternoa/ternoa-js#readme",
"devDependencies": {
"@jest/test-sequencer": "29.5.x",
"@types/jest": "29.5.x",
"@types/mime-types": "2.1.x",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"dotenv": "16.0.x",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "29.5.x",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "29.1.x",
"ts-node": "10.9.x",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@polkadot/api": "^10.10.1",
"axios": "^1.6.2",
"bn.js": "5.2.x",
"buffer": "6.0.x",
"form-data-encoder": "1.7.x",
"formdata-node": "4.4.x",
"openpgp": "^5.11.0",
"sssa-js": "^0.0.1",
"stream": "0.0.x"
}
}