-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
26 lines (26 loc) · 999 Bytes
/
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
{
"name": "upgradeable-proxy",
"version": "1.0.0",
"description": "This repository tests the upgradeable proxy pattern. It is a simplified version of the system being used by the [AragonOS](https://github.com/aragon/aragonOS), [Level K](https://github.com/levelkdev/master-storage) and [ZepplinOS](https://github.com/zeppelinos/core) systems. The core upgradeability pattern code has been copied and a few features have been removed.",
"main": "truffle.js",
"directories": {
"test": "test"
},
"dependencies": {
"web3-eth-abi": "^1.0.0-beta.35"
},
"devDependencies": {},
"scripts": {
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackandtheblockstalk/upgradeable-proxy.git"
},
"author": "@jackandtheblockstalk",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackandtheblockstalk/upgradeable-proxy/issues"
},
"homepage": "https://github.com/jackandtheblockstalk/upgradeable-proxy#readme"
}