-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "@runningbeta/r8-app",
"version": "0.0.1",
"description": "Secure and Upgradeable App library for Solidity",
"directories": {
"test": "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/r8-app.git"
},
"keywords": [
"app",
"proxy",
"rbac",
"solidity",
"ethereum",
"smart",
"contracts",
"r8",
"runningbeta",
"security",
"zeppelin"
],
"author": "Kristijan Rebernisak <kristijan@runningbeta.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/runningbeta/r8-app/issues"
},
"homepage": "https://github.com/runningbeta/r8-app#readme",
"dependencies": {
"@aragon/os": "^3.1.4",
"@runningbeta/rbac-solidity": "0.0.3",
"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-abi": "^0.6.5",
"solium": "^1.1.7",
"truffle": "^4.1.7",
"web3": "^1.0.0-beta.34",
"web3-utils": "^1.0.0-beta.34"
}
}