-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 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
50
{
"name": "orbs-signer-client",
"version": "1.1.0",
"description": "[![CI](https://circleci.com/gh/orbs-network/signer-service/tree/master.svg?style=svg)](https://circleci.com/gh/orbs-network/signer-service/tree/master)",
"main": "javascript/web3/signer.js",
"directories": {
"test": "test"
},
"scripts": {
"compose": "VERSION=$(cat .version) docker-compose up -d",
"test": "jest --forceExit --testTimeout 60000 ./javascript/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbs-network/signer-service.git"
},
"author": "Kirill Maksimov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbs-network/signer-service/issues"
},
"homepage": "https://github.com/orbs-network/signer-service#readme",
"dependencies": {
"@ethereumjs/common": "^2.6.0",
"@ethereumjs/tx": "^3.4.0",
"node-fetch": "^2.6.0",
"orbs-client-sdk": "^2.5.0"
},
"devDependencies": {
"@orbs-network/orbs-ethereum-contracts-v2": "0.0.12",
"ganache-cli": "^6.12.2",
"jest": "^26.0.1",
"web3": "1.2.6"
},
"jest": {
"verbose": true,
"extraGlobals": [
"Math"
],
"rootDir": ".",
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json"
]
},
"files": [
"javascript/**/*"
]
}