forked from TheTrunk/txwrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "@substrate/txwrapper",
"version": "7.0.1",
"author": "Parity Technologies <admin@parity.io>",
"description": "Helper functions for offline transaction generation.",
"files": [
"lib"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"engine": {
"node": ">=14"
},
"repository": "https://github.com/paritytech/txwrapper",
"scripts": {
"build": "rimraf lib/ && substrate-exec-tsc -p tsconfig.build.json",
"deploy": "yarn build && standard-version",
"docs": "typedoc",
"lint": "substrate-dev-run-lint",
"test": "substrate-exec-jest"
},
"dependencies": {
"@polkadot/api": "^4.13.1",
"memoizee": "^0.4.14"
},
"devDependencies": {
"@substrate/dev": "^0.5.2",
"@types/memoizee": "^0.4.3",
"rimraf": "^3.0.2",
"standard-version": "^9.1.1",
"ts-node": "^9.0.0",
"typedoc": "^0.20.32",
"typedoc-plugin-markdown": "^3.6.0"
},
"resolutions": {
"acorn": ">=8.0.5",
"kind-of": ">=6.0.3",
"minimist": ">=1.2.2",
"dot-prop": ">=5.1.1"
}
}