forked from unstoppabledomains/resolution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.78 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@unstoppabledomains/resolution",
"version": "1.10.4",
"description": "Domain Resolution for blockchain domains",
"main": "./build/index.js",
"directories": {
"doc": "docs"
},
"types": "./build/index.d.ts",
"bin": {
"resolution": "./build/cli/cli.js"
},
"scripts": {
"release": "RELEASE=patch yarn release:run",
"release:minor": "RELEASE=minor yarn release:run",
"release:major": "RELEASE=major yarn release:run",
"release:run": "yarn build && yarn size && yarn publish --$RELEASE && yarn release:tag && yarn docs:deploy",
"release:tag": "git push origin v$npm_package_version",
"lint": "eslint --ext ts src",
"lint:fix": "eslint --fix --ext ts src",
"test": "jest",
"test:single": "jest",
"test:live": "LIVE=1 yarn test",
"test:live:win": "set LIVE=1&& yarn test",
"start": "npm run build:live",
"dev": "yarn build && ./build/cli/cli.js -d brad.crypto",
"build": "rm -rf build && tsc -p . && chmod +x ./build/cli/cli.js",
"build:symlink": "yarn build && ln -sf $PWD/build/cli/cli.js /usr/local/bin/resolution",
"build:live": "nodemon --watch 'src/**/*.ts' --exec yarn build",
"docs": "yarn docs:clone && yarn docs:generate && yarn docs:readme",
"docs:clone": "([ -d ./docs ] || git clone --branch gh-pages git@github.com:unstoppabledomains/resolution.git docs) && git -C ./docs pull",
"docs:generate": "yarn run typedoc --out \"./docs/v$npm_package_version\"",
"docs:readme": "./docs-readme.sh",
"docs:deploy": "yarn docs && ./deploy-docs.sh",
"analyze": "webpack-cli",
"size": "yarn run sizecheck -p ./package.json -l 500 -v",
"network-config:pull": "curl https://raw.githubusercontent.com/unstoppabledomains/dot-crypto/master/src/network-config/network-config.json -o src/config/network-config.json"
},
"files": [
"build"
],
"author": "JohnnyJumper <https://github.com/JohnnyJumper>, Bogdan Gusiev <https://github.com/bogdan>, Braden Pezeshki <https://github.com/perfect-cents, Vladyslav Batyrenko <https://github.com/mvlabat>, Matthew Gould <https://github.com/theporpoise>",
"repository": {
"type": "git",
"url": "https://github.com/unstoppabledomains/resolution.git"
},
"keywords": [
"cns",
".crypto",
"zns",
"ens",
"ethereum",
"zilliqa",
"blockchain",
"resolution",
"name",
"domain",
"unstoppable"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/unstoppabledomains/resolution.git"
},
"homepage": "https://github.com/unstoppabledomains/resolution.git#readme",
"optionalDependencies": {
"dotenv": "^8.2.0"
},
"devDependencies": {
"@ethersproject/providers": "^5.0.2",
"@types/bn.js": "^4.11.6",
"@types/jest": "24.0.23",
"@types/lodash": "^4.14.158",
"@types/node": "11.15.3",
"@types/node-fetch": "2.5.4",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@unstoppabledomains/sizecheck": "^4.0.0",
"eslint": "^7.7.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "24.9.0",
"lodash": "^4.17.19",
"nock": "10.0.6",
"ts-jest": "24.2.0",
"ts-loader": "6.2.1",
"ts-node": "^8.6.2",
"typedoc": "0.17.8",
"typescript": "3.8.3",
"web3-0.20.7": "npm:web3@0.20.7",
"web3-providers-http": "^1.2.9",
"web3-providers-ws": "^1.2.9",
"webpack": "4.41.5",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.10"
},
"publicConfig": {
"access": "public"
},
"dependencies": {
"@ensdomains/address-encoder": "0.1.8",
"@ethersproject/abi": "^5.0.1",
"bip44-constants": "^8.0.5",
"bn.js": "^4.4.0",
"commander": "^4.1.1",
"content-hash": "^2.5.2",
"ethereum-ens-network-map": "^1.0.2",
"hash.js": "^1.1.7",
"js-sha3": "^0.8.0",
"node-fetch": "^2.6.0"
}
}