-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
83 lines (83 loc) · 2.14 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
{
"name": "@waves/waves-transactions",
"version": "4.3.10",
"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": {
"preversion": "npm run build",
"postversion": "npm publish",
"build-docs": "typedoc --out docs src && cd docs && touch .nojekyll",
"postpublish": "git push origin head",
"build": "ts-node build/build.ts && webpack --config webpack.config.js --env",
"fix-style": "tslint --fix -c tslint.json '{src,test,usage}/**/*{.ts,.tsx}'",
"test": "jest"
},
"files": [
"/dist",
"/src"
],
"author": {
"name": "wavesplatform"
},
"contributors": [
{
"name": "Sergey B",
"email": "[email protected]"
},
{
"name": "Yuriy Naydenov",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^23.3.9",
"@types/long": "^4.0.0",
"@types/node": "^10.12.3",
"copy-webpack-plugin": "^4.5.2",
"jest": "^24.7.1",
"jsdoc-to-markdown": "^5.0.0",
"nativescript-typedoc-theme": "0.0.7",
"ncp": "^2.0.0",
"preprocess": "^3.1.0",
"rimraf": "^2.6.2",
"terser-webpack-plugin": "^1.2.3",
"ts-jest": "^24.0.2",
"ts-jsdoc": "^3.2.2",
"ts-loader": "^5.4.5",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"typed-ts-events": "^1.1.1",
"typedoc": "^0.19.2",
"typedoc-clarity-theme": "^1.1.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": "^3.9.10",
"typescript-json-schema": "^0.43.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wavesplatform/waves-transactions.git"
},
"dependencies": {
"@waves/marshall": "^0.15.0-beta.1",
"@waves/node-api-js": "^1.3.10",
"@waves/protobuf-serialization": "1.5.2",
"@waves/ts-lib-crypto": "1.4.3",
"@waves/ts-types": "1.2.0",
"axios": "^0.19.0",
"long": "^4.0.0"
}
}