-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
73 lines (73 loc) · 1.47 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
{
"name": "hanzo-solidity",
"version": "0.2.1",
"description": "Solidity contracts developed for the Hanzo Platform",
"main": "truffle.js",
"directories": {
"test": "test"
},
"dependencies": {
"openzeppelin-solidity": "^2.1.2"
},
"devDependencies": {
"coveralls": "^3.0.2",
"sake-cli": "^0.7.2",
"sake-outdated": "^0.4.4",
"sake-publish": "^0.1.17",
"sake-version": "^0.1.19",
"solc": "^0.5.3",
"solium": "^1.2.2",
"solium-plugin-security": "^0.1.1",
"truffle": "^5.0.3",
"truffle-contract": "^4.0.4"
},
"scripts": {
"test": "sake test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanzoai/solidity.git"
},
"keywords": [
"blockchain",
"solidity",
"ethereum",
"hanzo",
"smart",
"solidity",
"web3"
],
"author": "Hanzo, Inc <[email protected]> (https://hanzo.ai)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/hanzoai/solidity/issues"
},
"homepage": "https://github.com/hanzoai/solidity#readme",
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"globals": {
"artifacts": true,
"assert": true,
"before": true,
"contract": true,
"it": true
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"no-console": "off",
"indent": [
"error",
2
],
"semi": [
2,
"never"
]
}
}
}