forked from JoinColony/purser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.71 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
84
85
86
87
88
89
{
"name": "purser",
"private": true,
"version": "2.5.1",
"description": "Interact with Ethereum wallets easily",
"scripts": {
"build": "node scripts/build-all-modules.js",
"update-modules": "node scripts/update-all-packages-json.js",
"populate-modules": "node scripts/populate-all-modules.js",
"release-modules": "sh scripts/publish-to-npm.sh",
"flow": "flow",
"lint": "eslint modules/**/*.js",
"lint:fix": "eslint modules/**/*.js --fix",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watchAll --verbose",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"test:ci": "cross-env NODE_ENV=test jest --ci --bail --verbose=true --maxWorkers 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/purser.git"
},
"author": "Raul Glogovetan <raul@colony.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoinColony/purser/issues"
},
"homepage": "https://github.com/JoinColony/purser",
"keywords": [
"ethereum",
"javascript",
"wallet",
"colony",
"software-wallet",
"monorepo",
"purser"
],
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.7",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-flow": "7.8.3",
"@colony/eslint-config-colony": "8.0.1",
"@kironeducation/flow-junit-transformer": "0.3.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.1.0",
"babel-plugin-dynamic-import-node": "2.3.0",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"camelcase": "5.3.1",
"chalk": "3.0.0",
"chokidar": "3.3.1",
"cross-env": "^6.0.3",
"denodeify": "1.2.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-prettier": "3.1.2",
"find-imports": "1.1.0",
"flow-bin": "0.121.0",
"flow-copy-source": "2.0.9",
"fs-extra": "8.1.0",
"husky": "4.2.3",
"jest": "25.1.0",
"jest-sandbox": "1.1.2",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"regenerator-runtime": "0.13.5",
"rimraf": "^3.0.2"
},
"dependencies": {
"@babel/runtime": "7.8.7",
"@ledgerhq/hw-app-eth": "5.11.0",
"@ledgerhq/hw-transport-u2f": "5.11.0",
"await-transaction-mined": "1.0.12",
"bip32-path": "0.4.2",
"bn.js": "5.1.1",
"ethereumjs-common": "1.5.0",
"ethereumjs-tx": "2.1.2",
"ethereumjs-util": "6.2.0",
"ethers": "4.0.46",
"hdkey": "1.1.1",
"lodash.isequal": "4.5.0",
"web3": "1.2.6"
}
}