-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "@runningbeta/rbac-solidity",
"version": "0.0.3",
"description": "RBAC (Role-Based Access Control) based on openzeppelin-solidity but using bytes32 type for roles",
"directories": {
"test": "test"
},
"files": [
"contracts",
"test"
],
"scripts": {
"compile": "node_modules/.bin/truffle compile",
"test": "node_modules/.bin/truffle test",
"console": "node_modules/.bin/truffle console",
"lint:sol": "./node_modules/solium/bin/solium.js -d .",
"lint:sol:fix": "./node_modules/solium/bin/solium.js -d . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/runningbeta/rbac-solidity.git"
},
"keywords": [
"rbac",
"access",
"acl",
"solidity",
"ethereum",
"smart",
"contracts",
"r8",
"runningbeta",
"security",
"zeppelin"
],
"author": "Kristijan Rebernisak <kristijan@runningbeta.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/runningbeta/rbac-solidity/issues"
},
"homepage": "https://github.com/runningbeta/rbac-solidity#readme",
"dependencies": {
"openzeppelin-solidity": "^1.9.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ethereumjs-util": "^5.2.0",
"ethjs-abi": "^0.2.1",
"solium": "^1.1.7",
"truffle": "^4.1.7",
"web3": "^1.0.0-beta.34",
"web3-utils": "^1.0.0-beta.34"
}
}