forked from paritytech/txwrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "@substrate/txwrapper",
"version": "3.5.1",
"author": "Parity Technologies <[email protected]>",
"description": "Helper funtions 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": "^1.24.1",
"@types/memoizee": "^0.4.3",
"acorn": ">=7.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"jest": "^25.1.0",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"ts-jest": "^25.0.0",
"ts-node": "^8.6.2",
"typedoc": "^0.17.0",
"typedoc-plugin-markdown": "^2.2.11",
"typescript": "^3.8.2"
},
"resolutions": {
"acorn": ">=7.1.1",
"kind-of": ">=6.0.3",
"minimist": ">=1.2.2"
}
}