-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.66 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
{
"name": "eth-metadata-registry",
"version": "0.0.1",
"description": "An on-chain metadata registry for Ethereum smart contracts",
"repository": {
"type": "git",
"url": "https://github.com/corydickson/eth-metadata-registry"
},
"main": "src/multihash.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"lint": "yarn run lint:sol && yarn run lint:js",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solium -d ./contracts/",
"lint:sol:fix": "solium -d . --fix",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ MetadataRegistry",
"create-local": "graph create --node http://localhost:8020/ MetadataRegistry",
"remove-local": "graph remove --node http://localhost:8020/ MetadataRegistry",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 MetadataRegistry"
},
"keywords": [
"multihash",
"ipfs",
"solidity",
"registry"
],
"author": "Cory Dickson<[email protected]>",
"license": "MIT",
"dependencies": {
"bignumber.js": "^9.0.0",
"bs58": "^4.0.1",
"@graphprotocol/graph-cli": "0.16.2",
"@graphprotocol/graph-ts": "0.16.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^6.7.0",
"eslint-plugin-import": "^2.8.0",
"ethlint": "^1.2.5",
"truffle": "^5.1.1"
}
}