-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@c4coin/PoB-contracts",
"version": "1.0.0",
"description": "Validator contracts for C4Coin.",
"main": "truffle.js",
"directories": {
"test": "test",
"contracts": "contracts"
},
"engines": {
"node": "10.0.0",
"npm": "6.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.8.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"faker": "^4.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"solhint": "^1.2.1",
"solidity-coverage": "^0.5.5"
},
"scripts": {
"precommit": "lint-staged",
"prettier": "prettier --single-quote --no-semi --write '**/*.{js,json}'",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test": "truffle test",
"test:cov": "solidity-coverage",
"lint:sol": "solhint contracts/**/**/*.sol",
"lint:js": "eslint test/**/*.js"
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/c4coin/PoB-contracts.git"
},
"keywords": [
"Ethereum",
"Parity",
"C4Coin",
"consensus"
],
"author": "Dave Sag <davesag@gmail.com>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/c4coin/PoB-contracts/issues"
},
"homepage": "https://github.com/c4coin/PoB-contracts#readme",
"dependencies": {
"npm": "^6.2.0",
"openzeppelin-solidity": "1.9.0"
}
}