This repository was archived by the owner on Jul 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 KB
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
{
"private": false,
"name": "@darwinia/dj",
"version": "0.2.7",
"description": "Darwinia bridge relayer tool",
"homepage": "https://github.com/darwinia-network/dj",
"repository": {
"type": "git",
"url": "https://github.com/darwinia-network/dj"
},
"author": "darwinia-network <hello@darwinia.network>",
"license": "GPL-3.0",
"main": "lib/index.js",
"bin": {
"dj": "lib/index.js",
"dj-proposal": "lib/src/bin/proposal.js",
"dj-confirm": "lib/src/bin/confirm.js",
"dj-verify": "lib/src/bin/verify.js"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@polkadot/api": "2.3.1",
"@polkadot/keyring": "3.6.1",
"@polkadot/util-crypto": "3.6.1",
"axios": "^0.19.2",
"prompts": "^2.3.2",
"web3": "^1.2.11",
"config": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@polkadot/types": "2.3.1",
"@types/node": "^13.11.1",
"@types/prompts": "^2.0.8",
"husky": "^4.2.5",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc --strict",
"lint": "tsc --noEmit --strict && tslint --project ./tsconfig.json",
"postinstall": "rm -f ~/.darwinia/types.json"
}
}