forked from unstoppabledomains/dot-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 3.2 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
{
"private": true,
"name": "dot-crypto",
"version": "2.0.0",
"keywords": [
"crypto",
"currency",
"ethereum",
"solidity",
"smart contract",
"domain",
"nft",
"erc721"
],
"description": "Contracts and tools for .crypto",
"repository": {
"type": "git",
"url": "https://github.com/unstoppabledomains/dot-crypto.git"
},
"homepage": "https://github.com/unstoppabledomains/dot-crypto/blob/master/README.md",
"author": {
"name": "Braden Pezeshki",
"email": "[email protected]"
},
"bin": "bin/cli.js",
"scripts": {
"format": "prettier --write -l '**/*.{md,ts,json}' --ignore-path .gitignore",
"ganache:start": "ganache-cli --port 7545 --networkId 4447 --gasLimit 440167000 --allowUnlimitedContractSize --quiet --account 0x2b2bdbbc2587eaa5f3d927394689b0354bb4129e3ab893d378c6afc30c5c2fd9,0xffffffffffffffffffff --account 0x6c6d6117e5f74903a6abc9f351baa1e0ab67806f6fcc285afc67998f003f75e6,0xffffffffffffffffffff --account 0xccab217c763cfeb41cd266fcb2ba9036b8570353f1bb0e6680a089dff3735818,0xffffffffffffffffffff --account 0x22b22dcb8bca5ee2fac79bfeb4ca839bea1f39626a1c2f3f25f0f8fd64a7953b,0xffffffffffffffffffff --account 0x322e324c976b4e814c7767355b75530d2c01e289e71a3e1f9c6ff10bb44e7944,0xffffffffffffffffffff --account 0x9ec8c608c5c417a4057ab469318960ff4814708e195adfec54fa51d695537fb7,0xffffffffffffffffffff --account 0x12b6e65588dca46a1b6de2695b9c3f995562d54eeca5afe67a6aae194066283c,0xffffffffffffffffffff --account 0x67ef87a612b60f954f6a9aea611a3d0c5695ccc5177526305a412dc593824a1b,0xffffffffffffffffffff --account 0x36906346eb3ed453ec22f4af83666450ff37873df765e0a4ee00e2e56bbc0b14,0xffffffffffffffffffff --account 0x81dd1aa6b0d888a6cb52617d0bb5d42c8eb114d28cb9e451b03b0b46239bd2ce,0xffffffffffffffffffff &",
"ganache:stop": "lsof -ti:7545 | xargs kill",
"test": "truffle test",
"test-ci": "./scripts/test.sh",
"coverage": "truffle run coverage",
"compile": "./scripts/compile.sh && yarn merge-contracts",
"merge-contracts": "sol-merger \"./contracts/**/*.sol\" ./build",
"prebuild": "yarn compile && rm -rf build",
"build": "tsc",
"watch": "tsc --watch",
"check:links": "find . -type f -name '*.md' ! -path './node_modules/*' | xargs -l yarn markdown-link-check",
"check:size": "./scripts/erc170_check.sh",
"updateKeys": "ts-node src/supported-keys/update.ts"
},
"devDependencies": {
"@chainlink/contracts": "^0.0.10",
"@truffle/hdwallet-provider": "^1.1.0",
"@types/mocha": "^5.2.7",
"@types/node-fetch": "^2.5.10",
"@types/web3": "^1.0.20",
"@types/yargs": "^13.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^2.4.2",
"eth-gas-reporter": "^0.2.17",
"fs": "^0.0.1-security",
"ganache-cli": "^6.7.0",
"ganache-core": "^2.8.0",
"markdown-link-check": "^3.8.1",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"sol-merger": "^3.1.0",
"solc": "0.5.12",
"solidity-coverage": "0.7.10",
"truffle": "^5.0.39",
"truffle-plugin-verify": "^0.5.0",
"ts-node": "^10.0.0",
"typescript": "^3.6.3",
"web3": "1",
"yargs": "^14.0.0"
},
"dependencies": {
"@openzeppelin/contracts-2.3": "npm:@openzeppelin/[email protected]"
}
}