This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
65 lines (65 loc) · 2.2 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
{
"name": "@keep-network/keep-ecdsa",
"version": "1.9.0-dev",
"description": "Smart contracts for ECDSA Keep",
"repository": "ssh://[email protected]/keep-network/keep-ecdsa.git",
"files": [
"contracts/**/*.sol",
"artifacts/"
],
"scripts": {
"truffle": "truffle",
"clean": "rm -rf build/",
"build": "truffle compile",
"test": "npm run test:js",
"test:js": "truffle compile && mocha --exit --recursive --timeout 75000",
"test:quick": "mocha --exit --recursive --timeout 45000",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:sol",
"lint:js": "eslint .",
"lint:fix:js": "eslint --fix .",
"lint:sol": "solium -d contracts/ && prettier --check '**/*.sol'",
"lint:fix:sol": "solium -d contracts/ --fix && prettier --write '**/*.sol'"
},
"author": "Satoshi Nakamoto 🤪",
"license": "MIT",
"bugs": {
"url": "https://github.com/keep-network/keep-ecdsa/issues"
},
"homepage": "https://github.com/keep-network/keep-ecdsa",
"dependencies": {
"@keep-network/keep-core": ">1.8.0-dev <1.8.0-pre",
"@keep-network/sortition-pools": "1.2.0-dev.1",
"@openzeppelin/upgrades": "^2.7.2",
"openzeppelin-solidity": "2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@celo/contractkit": "^1.0.1",
"@keep-network/common.js": "0.0.1-3",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.4",
"@truffle/contract": "^4.1.8",
"@truffle/hdwallet-provider": "^1.2.6",
"bn-chai": "^1.0.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-keep": "git+https://github.com/keep-network/eslint-config-keep.git",
"ethlint": "^1.2.5",
"mocha": "^7.1.1",
"prettier": "^2.0.2",
"prettier-plugin-solidity": "^1.0.0-beta.2",
"solc": "0.5.17",
"solium-config-keep": "github:keep-network/solium-config-keep#0.1.2",
"toml": "^3.0.0",
"tomlify-j0.4": "^3.0.0",
"truffle": "^5.3.1",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.15"
}
}