forked from paritytech/txwrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "@substrate/txwrapper",
"version": "3.10.8",
"author": "Parity Technologies <[email protected]>",
"description": "Helper functions for offline transaction generation.",
"files": [
"lib"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/paritytech/txwrapper",
"scripts": {
"build": "rimraf lib/ && tsc -p tsconfig.build.json",
"deploy": "yarn build && standard-version",
"docs": "typedoc",
"lint": "tsc --noEmit && eslint . --ext ts",
"test": "jest"
},
"dependencies": {
"@polkadot/api": "3.7.3",
"acorn": ">=8.0.5",
"memoizee": "^0.4.15"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/memoizee": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"standard-version": "^9.1.0",
"ts-jest": "^26.5.0",
"ts-node": "^9.0.0",
"typedoc": "^0.20.20",
"typedoc-plugin-markdown": "^3.4.5",
"typescript": "^4.0.2"
},
"resolutions": {
"acorn": ">=7.1.1",
"kind-of": ">=6.0.3",
"minimist": ">=1.2.2",
"dot-prop": ">=5.1.1"
}
}