-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.61 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
{
"name": "@waves/waves-transactions",
"version": "3.3.11",
"description": "Build and sign(multi-sign) transactions for Waves blockchain.",
"keywords": [
"waves",
"crypto",
"transactions",
"protocol",
"binary",
"cryptography",
"signature"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "ts-node build/build.ts",
"prepublishOnly": "npm run build",
"fix-style": "tslint --fix -c tslint.json '{src,test,usage}/**/*{.ts,.tsx}'",
"test": "jest"
},
"author": {
"name": "Yuriy Naydenov",
"email": "[email protected]"
},
"contributors": [
{
"name": "Sergey B",
"email": "[email protected]"
}
],
"license": "MIT",
"peerDependencies": {
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.3",
"copy-webpack-plugin": "^4.5.2",
"jest": "^23.6.0",
"jsdoc-to-markdown": "^4.0.1",
"nativescript-typedoc-theme": "0.0.7",
"ncp": "^2.0.0",
"preprocess": "^3.1.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"ts-jsdoc": "^3.0.1",
"ts-loader": "^5.1.0",
"ts-node": "^7.0.1",
"typedoc": "^0.13.0",
"typedoc-clarity-theme": "^1.1.0",
"typescript": "^3.2.2",
"typescript-json-schema": "^0.33.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wavesplatform/waves-transactions.git"
},
"dependencies": {
"@waves/marshall": "^0.6.0",
"@waves/waves-crypto": "^2.0.4",
"axios": "^0.18.0"
}
}