forked from keep-network/keep-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.34 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
{
"name": "@keep-network/keep-core",
"version": "1.8.1-dev",
"description": "Smart Contracts for the Keep Network Core",
"repository": {
"type": "git",
"url": "https://github.com/keep-network/keep-core.git"
},
"files": [
"contracts/**/*.sol",
"artifacts"
],
"scripts": {
"truffle": "truffle",
"clean": "rm -rf build",
"compile": "npm run clean && truffle compile --contracts_build_directory=./build/truffle",
"test": "truffle compile && mocha --exit --recursive --timeout 75000",
"test:quick": "mocha --exit --recursive --timeout 45000",
"test:quick:watch": "mocha --watch --exit --recursive --timeout 45000",
"demo": "truffle migrate --reset && truffle exec ./scripts/delegate-tokens.js",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint . --ignore-pattern 'dashboard/'",
"lint:fix:js": "eslint . --fix --ignore-pattern 'dashboard/'",
"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-core/issues"
},
"homepage": "https://github.com/keep-network/keep-core/contracts/solidity-v1",
"dependencies": {
"@openzeppelin/upgrades": "^2.7.2",
"openzeppelin-solidity": "2.4.0"
},
"devDependencies": {
"@celo/contractkit": "^1.0.1",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.5",
"@truffle/hdwallet-provider": "^2.0.10",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.26.0",
"bn-chai": "^1.0.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep#0.3.0",
"eth-gas-reporter": "^0.2.14",
"ethereumjs-abi": "^0.6.5",
"mocha": "^7.1.1",
"mocha-junit-reporter": "^1.23.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.2 ",
"solc": "0.5.17",
"solium": "^1.2.5",
"solium-config-keep": "github:keep-network/solium-config-keep#0.1.2",
"toml": "^3.0.0",
"tomlify-j0.4": "^3.0.0",
"truffle": "^5.5.20",
"truffle-plugin-verify": "^0.5.26",
"websocket": "^1.0.28"
}
}